feat: 添加index应用模块

This commit is contained in:
2025-04-03 15:08:27 +08:00
parent e750c8bbc7
commit 6bcc03a568
10 changed files with 40 additions and 16 deletions

13
app/index/route/v1.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
use think\facade\Route;
Route::get('/', 'Index/index');