mirror of
https://github.com/appwrite/appwrite
synced 2026-05-08 17:51:12 +00:00
17 lines
377 B
PHP
17 lines
377 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Appwrite\Platform\Modules\Databases;
|
||
|
|
|
||
|
|
use Appwrite\Platform\Modules\Databases\Services\Http;
|
||
|
|
use Appwrite\Platform\Modules\Databases\Services\Workers;
|
||
|
|
use Utopia\Platform;
|
||
|
|
|
||
|
|
class Module extends Platform\Module
|
||
|
|
{
|
||
|
|
public function __construct()
|
||
|
|
{
|
||
|
|
$this->addService('http', new Http());
|
||
|
|
$this->addService('workers', new Workers());
|
||
|
|
}
|
||
|
|
}
|