mirror of
https://github.com/appwrite/appwrite
synced 2026-05-15 13:08:31 +00:00
26 lines
745 B
PHP
26 lines
745 B
PHP
<?php
|
|
|
|
namespace Appwrite\Platform;
|
|
|
|
use Appwrite\Platform\Modules\Console;
|
|
use Appwrite\Platform\Modules\Core;
|
|
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
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct(new Core());
|
|
$this->addModule(new Projects\Module());
|
|
$this->addModule(new Functions\Module());
|
|
$this->addModule(new Sites\Module());
|
|
$this->addModule(new Console\Module());
|
|
$this->addModule(new Proxy\Module());
|
|
$this->addModule(new Tokens\Module());
|
|
}
|
|
}
|