appwrite/src/Appwrite/Platform/Appwrite.php

17 lines
330 B
PHP
Raw Normal View History

2022-11-14 10:01:41 +00:00
<?php
namespace Appwrite\Platform;
2022-11-14 10:10:47 +00:00
use Appwrite\Platform\Services\Tasks;
2023-05-29 13:58:45 +00:00
use Appwrite\Platform\Services\Workers;
2022-11-14 10:01:41 +00:00
use Utopia\Platform\Platform;
class Appwrite extends Platform
{
public function __construct()
{
$this->addService('tasks', new Tasks());
2023-05-29 13:58:45 +00:00
$this->addService('workers', new Workers());
2022-11-14 10:01:41 +00:00
}
}