From 8d9e840b23ff5139538b66fa3c592635baf876c4 Mon Sep 17 00:00:00 2001 From: Chirag Aggarwal Date: Wed, 30 Apr 2025 10:02:25 +0000 Subject: [PATCH] fix: appwrite.php file --- src/Appwrite/Platform/Appwrite.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Appwrite/Platform/Appwrite.php b/src/Appwrite/Platform/Appwrite.php index d5e3f74f45..5752432257 100644 --- a/src/Appwrite/Platform/Appwrite.php +++ b/src/Appwrite/Platform/Appwrite.php @@ -8,6 +8,7 @@ use Appwrite\Platform\Modules\Functions; use Appwrite\Platform\Modules\Projects; use Appwrite\Platform\Modules\Proxy; use Appwrite\Platform\Modules\Sites; +use Appwrite\Platform\Modules\Tokens; use Utopia\Platform\Platform; class Appwrite extends Platform @@ -20,6 +21,6 @@ class Appwrite extends Platform $this->addModule(new Sites\Module()); $this->addModule(new Console\Module()); $this->addModule(new Proxy\Module()); - $this->addModule(new Storage\Module()); + $this->addModule(new Tokens\Module()); } }