mirror of
https://github.com/appwrite/appwrite
synced 2026-05-11 11:10:46 +00:00
14 lines
199 B
PHP
14 lines
199 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Appwrite\Platform;
|
||
|
|
|
||
|
|
use Utopia\Platform\Platform;
|
||
|
|
|
||
|
|
class Appwrite extends Platform
|
||
|
|
{
|
||
|
|
public function __construct()
|
||
|
|
{
|
||
|
|
$this->addService('tasks', new Tasks());
|
||
|
|
}
|
||
|
|
}
|