mirror of
https://github.com/appwrite/appwrite
synced 2026-05-11 11:10:46 +00:00
16 lines
330 B
PHP
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());
|
|
}
|
|
}
|