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