appwrite/src/Appwrite/Platform/Modules/Proxy/Module.php

15 lines
258 B
PHP
Raw Normal View History

2025-02-12 18:28:25 +00:00
<?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());
}
}