feat: 添加index应用模块

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

View File

@@ -0,0 +1,12 @@
<?php
declare (strict_types = 1);
namespace app\index\controller;
class Index
{
public function index()
{
return '您好!这是一个[' . lang('home') . ']示例应用';
}
}