mirror of
https://github.com/appwrite/appwrite
synced 2026-05-16 05:28:31 +00:00
16 lines
330 B
PHP
16 lines
330 B
PHP
<?php
|
|
|
|
namespace Appwrite\Platform;
|
|
|
|
use Appwrite\Platform\Modules\Core;
|
|
use Appwrite\Platform\Modules\DevelopmentKeys;
|
|
use Utopia\Platform\Platform;
|
|
|
|
class Appwrite extends Platform
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct(new Core());
|
|
$this->addModule(new DevelopmentKeys\Module());
|
|
}
|
|
}
|