From d1dfa8b49b8aecaa682439b2d1fa06d11a3bd8cc Mon Sep 17 00:00:00 2001 From: wolfcode <37436228+wolf-leo@users.noreply.github.com> Date: Wed, 16 Apr 2025 18:40:37 +0800 Subject: [PATCH] Update app.php --- route/app.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/route/app.php b/route/app.php index decb753..73c49c6 100644 --- a/route/app.php +++ b/route/app.php @@ -10,10 +10,4 @@ // +---------------------------------------------------------------------- use think\facade\Route; -Route::get('think', function () { - return 'hello,ThinkPHP6!'; -}); - -Route::get('hello/:name', 'index/hello'); - Route::any('install', '\app\index\controller\Install@index');