appwrite/src/Appwrite/Platform/Appwrite.php
2024-06-09 01:03:40 +00:00

14 lines
227 B
PHP

<?php
namespace Appwrite\Platform;
use Appwrite\Platform\Modules\Core;
use Utopia\Platform\Platform;
class Appwrite extends Platform
{
public function __construct()
{
parent::__construct(new Core());
}
}