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

9 lines
180 B

1 year ago
  1. #!/usr/bin/env php
  2. <?php
  3. namespace think;
  4. // 命令行入口文件
  5. // 加载基础文件
  6. require __DIR__ . '/vendor/autoload.php';
  7. // 应用初始化
  8. (new App())->console->run();