mirror of
https://github.com/appwrite/appwrite
synced 2026-05-24 09:28:40 +00:00
16 lines
362 B
PHP
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());
|
|
}
|
|
}
|