appwrite/src/Appwrite/Task/Tasks.php

15 lines
324 B
PHP
Raw Normal View History

2022-07-08 02:27:06 +00:00
<?php
namespace Appwrite\Task;
2022-07-13 06:26:22 +00:00
use Utopia\Platform\Service;
2022-07-08 02:27:06 +00:00
2022-07-13 06:26:22 +00:00
class Tasks extends Service {
public function __construct()
2022-07-08 02:27:06 +00:00
{
2022-07-13 06:26:22 +00:00
$this->type = self::TYPE_CLI;
$this->addAction('version', new Version());
$this->addAction('usage', new Usage());
$this->addAction('vars', new Vars());
2022-07-08 02:27:06 +00:00
}
}