mirror of
https://devops.lemonos.cn/lawson/FendxPHP.git
synced 2026-06-15 23:12:49 +08:00
10 lines
250 B
PHP
10 lines
250 B
PHP
|
|
<?php
|
||
|
|
declare(strict_types=1);
|
||
|
|
|
||
|
|
use Fendx\Web\Route\Router;
|
||
|
|
|
||
|
|
return function (Router $router) {
|
||
|
|
$router->get('/', [App\Controller\HomeController::class, 'index']);
|
||
|
|
$router->get('/health', [App\Controller\HomeController::class, 'health']);
|
||
|
|
};
|