2023-11-21 15:14:59 +08:00

17 lines
197 B
PHP

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