您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415
  1. <?php
  2. use Luticate\Utils\Controller\LuticateApplication;
  3. require_once __DIR__ . '/../vendor/autoload.php';
  4. $json = file_get_contents(__DIR__ . '/../config.json');
  5. $config = json_decode($json, true);
  6. $app = new LuticateApplication($config);
  7. $app->setVersion(1.0);
  8. $app->setupRoutes();
  9. return $app;