feat: init

This commit is contained in:
2024-12-20 18:03:35 +08:00
commit efe7c29363
76 changed files with 2157 additions and 0 deletions

2
app/admin/common.php Normal file
View File

@@ -0,0 +1,2 @@
<?php
// 这是系统自动生成的公共文件

View File

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

5
app/admin/event.php Normal file
View File

@@ -0,0 +1,5 @@
<?php
// 这是系统自动生成的event定义文件
return [
];

5
app/admin/middleware.php Normal file
View File

@@ -0,0 +1,5 @@
<?php
// 这是系统自动生成的middleware定义文件
return [
];