mirror of
https://github.com/appwrite/appwrite
synced 2026-05-20 07:28:33 +00:00
14 lines
258 B
PHP
14 lines
258 B
PHP
<?php
|
|
|
|
namespace Appwrite\Platform\Modules\Proxy;
|
|
|
|
use Appwrite\Platform\Modules\Proxy\Services\Http;
|
|
use Utopia\Platform;
|
|
|
|
class Module extends Platform\Module
|
|
{
|
|
public function __construct()
|
|
{
|
|
$this->addService('http', new Http());
|
|
}
|
|
}
|