dbsms_primeidc init...1

This commit is contained in:
최준흠 2025-04-01 15:47:16 +09:00
parent 668a92bc85
commit 889be99689

View File

@ -12,8 +12,6 @@ try {
// 요청된 URL 경로 가져오기
$url = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : false;
$url = !$url && isset($argv[1]) ? $argv[1] : false;
echo $url;
exit;
$route = new Route(trim($url, '/'));
return $route->run();
} catch (\Exception $e) {