mirror of
https://gitee.com/zongzhige/shopxo.git
synced 2024-11-30 02:49:03 +08:00
12 lines
220 B
PHP
12 lines
220 B
PHP
#!/usr/bin/env php
|
|
<?php
|
|
namespace think;
|
|
|
|
// 引入公共入口文件
|
|
require __DIR__.'/public/core.php';
|
|
|
|
// 加载基础文件
|
|
require __DIR__ . '/vendor/autoload.php';
|
|
|
|
// 应用初始化
|
|
(new App())->console->run(); |