This commit is contained in:
2026-03-10 18:45:36 +08:00
commit 3a9e6df891
679 changed files with 291867 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');
}
}