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

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]示例应用';
}
}