mirror of
https://github.com/appwrite/appwrite
synced 2026-05-09 10:10:51 +00:00
14 lines
324 B
PHP
14 lines
324 B
PHP
<?php
|
|
namespace Appwrite\Task;
|
|
|
|
use Utopia\Platform\Service;
|
|
|
|
class Tasks extends Service {
|
|
public function __construct()
|
|
{
|
|
$this->type = self::TYPE_CLI;
|
|
$this->addAction('version', new Version());
|
|
$this->addAction('usage', new Usage());
|
|
$this->addAction('vars', new Vars());
|
|
}
|
|
}
|