mirror of
https://github.com/appwrite/appwrite
synced 2026-05-23 00:49:02 +00:00
add: database module to platform registry.
This commit is contained in:
parent
57a9218649
commit
ad16bd281e
1 changed files with 2 additions and 0 deletions
|
|
@ -4,6 +4,7 @@ namespace Appwrite\Platform;
|
|||
|
||||
use Appwrite\Platform\Modules\Console;
|
||||
use Appwrite\Platform\Modules\Core;
|
||||
use Appwrite\Platform\Modules\Databases;
|
||||
use Appwrite\Platform\Modules\Functions;
|
||||
use Appwrite\Platform\Modules\Projects;
|
||||
use Appwrite\Platform\Modules\Proxy;
|
||||
|
|
@ -16,6 +17,7 @@ class Appwrite extends Platform
|
|||
public function __construct()
|
||||
{
|
||||
parent::__construct(new Core());
|
||||
$this->addModule(new Databases\Module());
|
||||
$this->addModule(new Projects\Module());
|
||||
$this->addModule(new Functions\Module());
|
||||
$this->addModule(new Sites\Module());
|
||||
|
|
|
|||
Loading…
Reference in a new issue