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

16 lines
362 B
PHP

<?php
namespace Appwrite\Platform\Modules\Proxy\Services;
use Appwrite\Platform\Modules\Proxy\Http\Rules\Create as CreateRule;
use Utopia\Platform\Service;
class Http extends Service
{
public function __construct()
{
$this->type = Service::TYPE_HTTP;
// Rules
$this->addAction(CreateRule::getName(), new CreateRule());
}
}