diff --git a/src/Appwrite/Platform/Appwrite.php b/src/Appwrite/Platform/Appwrite.php index a075116d8b..438dc11a2d 100644 --- a/src/Appwrite/Platform/Appwrite.php +++ b/src/Appwrite/Platform/Appwrite.php @@ -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()); } } diff --git a/src/Appwrite/Platform/Modules/Storage/Module.php b/src/Appwrite/Platform/Modules/Storage/Module.php index 9f49ef0111..59eb9e87a6 100644 --- a/src/Appwrite/Platform/Modules/Storage/Module.php +++ b/src/Appwrite/Platform/Modules/Storage/Module.php @@ -1,8 +1,8 @@