// +----------------------------------------------------------------------
namespace app\controller;
use app\controller\Base;
/**
* @title 首页
*/
class Index extends Base{
/**
* @title 首页
*
* @return void
*/
public function index(){
if(request()->isAjax()){
return ['code' => 1, 'data' => 'SentOS'];
}else{
return `SentOS`;
}
}
public function test(){
}
public function miss(){
return '404 Not Found!';
}
}