1
0
Fork 0
mirror of synced 2024-09-15 08:57:35 +12:00

create and use core module

This commit is contained in:
Damodar Lohani 2024-04-08 05:05:04 +00:00
parent 4d15e0dbd2
commit 8fe6ce64b2
2 changed files with 10 additions and 0 deletions

View file

@ -10,6 +10,7 @@ class Appwrite extends Platform
{
public function __construct()
{
parent::__construct(new Core());
$this->addService('tasks', new Tasks());
$this->addService('workers', new Workers());
}

View file

@ -0,0 +1,9 @@
<?php
namespace Appwrite\Platform;
use Utopia\Platform\Module;
class Core extends Module
{
}