Files
im/app/api/controller/IndexController.php
commie c153975eed 7
2026-01-08 05:42:44 +08:00

17 lines
358 B
PHP
Executable File

<?php
namespace app\api\controller;
use Response;
use support\Request;
use hg\apidoc\annotation as Apidoc;
/**
* 主控制器
* @Apidoc\NotParse()
* @Apidoc\NotDebug()
*/
class IndexController extends BaseController{
public $noNeedLogin=['index','chart'];
public function index(){
return $this->success(__("Unverified address"));
}
}