<?php
namespace app\reservoir\controller;
use app\common\controller\Frontend;
use think\Lang;
/**
* Ajax异步请求接口
* @internal
*/
class Monitoring extends Frontend
{
protected $noNeedLogin = '*';
public function monitoring(){
return $this->view->fetch();
}
}