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