mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-05 19:41:43 +08:00
19 lines
381 B
PHP
19 lines
381 B
PHP
<?php
|
|
declare (strict_types=1);
|
|
|
|
namespace app\controller\admin;
|
|
|
|
use app\util\ReturnCode;
|
|
use think\Response;
|
|
|
|
class Miss extends Base {
|
|
|
|
public function index(): Response {
|
|
if ($this->request->isOptions()) {
|
|
return $this->buildSuccess();
|
|
} else {
|
|
return $this->buildFailed(ReturnCode::INVALID, '接口地址异常');
|
|
}
|
|
}
|
|
}
|