Implemented Tamer & Cache Drivers (WIP)

This commit is contained in:
Netkas 2023-06-18 21:12:42 -04:00
parent 26f0f31cc6
commit d346c4d23d
No known key found for this signature in database
GPG key ID: 5DAF58535614062B
39 changed files with 2211 additions and 913 deletions

View file

@ -0,0 +1,24 @@
<?php
namespace FederationLib\Enums\Standard;
final class Methods
{
public const PING = 'ping';
public const WHOAMI = 'whoami';
public const CREATE_CLIENT = 'create_client';
public const GET_CLIENT = 'get_client';
public const CHANGE_CLIENT_NAME = 'change_client_name';
public const CHANGE_CLIENT_DESCRIPTION = 'change_client_description';
public const ALL = [
self::PING,
self::WHOAMI,
self::CREATE_CLIENT,
self::GET_CLIENT,
self::CHANGE_CLIENT_NAME,
self::CHANGE_CLIENT_DESCRIPTION
];
}