mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
15 lines
329 B
PHP
15 lines
329 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, '接口地址异常', []);
|
|
}
|
|
}
|
|
}
|