mirror of
https://devops.lemonos.cn/lawson/FendxPHP.git
synced 2026-06-15 15:02:49 +08:00
10 lines
170 B
PHP
10 lines
170 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();
|