mirror of
https://github.com/appwrite/appwrite
synced 2026-05-22 16:38:32 +00:00
chore: fix directory naming
This commit is contained in:
parent
4f63c520ec
commit
97ed0dc89c
3 changed files with 5 additions and 5 deletions
|
|
@ -3,7 +3,7 @@
|
|||
namespace Appwrite\Platform;
|
||||
|
||||
use Appwrite\Platform\Modules\Core;
|
||||
use Appwrite\Platform\Modules\Tokens;
|
||||
use Appwrite\Platform\Modules\Storage;
|
||||
use Utopia\Platform\Platform;
|
||||
|
||||
class Appwrite extends Platform
|
||||
|
|
@ -11,6 +11,6 @@ class Appwrite extends Platform
|
|||
public function __construct()
|
||||
{
|
||||
parent::__construct(new Core());
|
||||
$this->addModule(new Tokens\Module());
|
||||
$this->addModule(new Storage\Module());
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
<?php
|
||||
|
||||
namespace Appwrite\Platform\Modules\Tokens;
|
||||
namespace Appwrite\Platform\Modules\Storage;
|
||||
|
||||
use Appwrite\Platform\Modules\Tokens\Services\Http;
|
||||
use Appwrite\Platform\Modules\Storage\Services\Http;
|
||||
use Utopia\Platform;
|
||||
|
||||
class Module extends Platform\Module
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
namespace Appwrite\Platform\Modules\Tokens\Services;
|
||||
namespace Appwrite\Platform\Modules\Storage\Services;
|
||||
|
||||
use Appwrite\Platform\Modules\Storage\Http\Tokens\Buckets\Files\Create as CreateFileToken;
|
||||
use Appwrite\Platform\Modules\Storage\Http\Tokens\Buckets\Files\XList as ListFileTokens;
|
||||
|
|
|
|||
Loading…
Reference in a new issue