7 lines
157 B
PHP
Raw Normal View History

2024-08-31 01:03:37 +08:00
<?php
ob_start();
include(dirname(__FILE__).'/config/config.php');
$app = new Application();
$app->setDefault('user.index.index');
$app->run();
?>