cxhxy/app/user/controller/Index.php
2023-11-21 15:14:59 +08:00

17 lines
187 B
PHP

<?php
namespace app\user\controller;
use think\facade\View;
/**
* 首页
*/
class Index extends Controller
{
public function index()
{
return View::fetch();
}
}