appwrite/src/Appwrite/Task/Tasks.php

23 lines
711 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;
2022-07-13 07:02:55 +00:00
$this
->addAction(Version::NAME, new Version())
->addAction(Usage::NAME, new Usage())
->addAction(Vars::NAME, new Vars())
->addAction(SSL::NAME, new SSL())
->addAction(Doctor::NAME, new Doctor())
->addAction(Install::NAME, new Install())
->addAction(Maintenance::NAME, new Maintenance())
->addAction(Migrate::NAME, new Migrate())
->addAction(SDKs::NAME, new SDKs())
->addAction(Specs::NAME, new Specs());
2022-07-08 02:27:06 +00:00
}
}