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

16 lines
335 B
PHP
Raw Normal View History

2024-10-22 15:01:38 +00:00
<?php
namespace Appwrite\Platform\Modules\Sites\Services;
use Appwrite\Platform\Modules\Sites\Http\Sites\CreateSite;
use Utopia\Platform\Service;
class Http extends Service
{
public function __construct()
{
$this->type = Service::TYPE_HTTP;
$this->addAction(CreateSite::getName(), new CreateSite());
}
}