appwrite/src/Appwrite/Platform/Modules/Proxy/Services/Http.php

17 lines
362 B
PHP
Raw Normal View History

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