php-micro-file-server/think

10 lines
180 B
Plaintext
Raw Permalink Normal View History

2024-09-12 22:11:31 +08:00
#!/usr/bin/env php
<?php
namespace think;
// 命令行入口文件
// 加载基础文件
require __DIR__ . '/vendor/autoload.php';
// 应用初始化
(new App())->console->run();