mirror of
https://github.com/appwrite/appwrite
synced 2026-05-19 06:58:21 +00:00
15 lines
269 B
PHP
15 lines
269 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Appwrite\Platform\Modules;
|
||
|
|
|
||
|
|
use Appwrite\Platform\Modules\DevelopmentKeys\Services\Http;
|
||
|
|
use Utopia\Platform\Module;
|
||
|
|
|
||
|
|
class DevelopmentKeys extends Module
|
||
|
|
{
|
||
|
|
public function __construct()
|
||
|
|
{
|
||
|
|
$this->addService('http', new Http());
|
||
|
|
}
|
||
|
|
}
|