mirror of
https://github.com/appwrite/appwrite
synced 2026-05-18 22:48:31 +00:00
14 lines
269 B
PHP
14 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());
|
|
}
|
|
}
|