Files
zhangzq ab1996331e init
2026-03-13 09:28:47 +08:00

17 lines
275 B
PHP

<?php
namespace app\monitor\controller;
use think\Controller;
class Monitor extends Controller
{
public function index()
{
return $this->view->fetch();
//return $this->redirect('admin/index/login');
//return $this->redirect('/index/user');
}
}