appwrite/src/Appwrite/Platform/Modules/Proxy/Module.php
2025-02-12 23:58:25 +05:30

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());
}
}