This commit is contained in:
2026-03-09 22:55:58 +08:00
commit 914b914deb
266 changed files with 133827 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<?php
namespace app\index\controller;
use think\Controller;
class Index extends Controller
{
public function index()
{
return $this->view->fetch();
//return $this->redirect('admin/index/login');
//return $this->redirect('/index/user');
}
}