appwrite/src/Appwrite/Platform/Appwrite.php

17 lines
312 B
PHP
Raw Normal View History

2022-11-14 10:01:41 +00:00
<?php
namespace Appwrite\Platform;
use Appwrite\Platform\Modules\Core;
2022-11-14 10:01:41 +00:00
use Utopia\Platform\Platform;
2024-11-17 06:17:55 +00:00
use Appwrite\Platform\Modules\Tokens;
2022-11-14 10:01:41 +00:00
class Appwrite extends Platform
{
public function __construct()
{
parent::__construct(new Core());
2024-11-17 06:17:55 +00:00
$this->addModule(new Tokens\Module());
2022-11-14 10:01:41 +00:00
}
}