You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
363 B
PHTML

<?php
define('SITE_BASEURL', 'https://www.scifi.top');
require_once __DIR__ . '/src/vendor/autoload.php';
require_once __DIR__ . '/src/function.php';
use Isekai\Seo\Resource;
use Isekai\Seo\Seo;
Seo::getInstance()->register();
Resource::getInstance()->register();
$dispatched = Flight::start();
if ($dispatched) {
exit();
} else {
Flight::notFound();
}