mirror of
https://devops.lemonos.cn/lawson/FendxPHP.git
synced 2026-06-15 23:12:49 +08:00
10 lines
173 B
PHP
10 lines
173 B
PHP
|
|
<?php
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
require __DIR__ . '/../fendx-framework/fendx-starter/src/Bootstrap.php';
|
||
|
|
|
||
|
|
use Fendx\Starter\Bootstrap;
|
||
|
|
|
||
|
|
$app = new Bootstrap();
|
||
|
|
$app->run();
|