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