appwrite/src/Appwrite/Platform/Appwrite.php
2023-05-29 16:58:45 +03:00

16 lines
330 B
PHP

<?php
namespace Appwrite\Platform;
use Appwrite\Platform\Services\Tasks;
use Appwrite\Platform\Services\Workers;
use Utopia\Platform\Platform;
class Appwrite extends Platform
{
public function __construct()
{
$this->addService('tasks', new Tasks());
$this->addService('workers', new Workers());
}
}