fix: appwrite.php file

This commit is contained in:
Chirag Aggarwal 2025-04-30 10:02:25 +00:00
parent 093feb58ca
commit 8d9e840b23

View file

@ -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());
}
}