mirror of
https://github.com/archtechx/tenancy.git
synced 2026-02-05 20:54:03 +00:00
Add more storage features
This commit is contained in:
parent
1fe599966b
commit
14f415914f
3 changed files with 53 additions and 8 deletions
|
|
@ -11,5 +11,7 @@ interface StorageDriver
|
|||
public function createTenant(string $domain, string $uuid): array;
|
||||
public function deleteTenant(string $uuid): bool;
|
||||
public function get(string $uuid, string $key);
|
||||
public function getMany(string $uuid, array $keys);
|
||||
public function put(string $uuid, string $key, $value);
|
||||
public function putMany(string $uuid, array $values);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue