mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-05 05:42:45 +08:00
26 lines
627 B
PHP
26 lines
627 B
PHP
<?php
|
||
declare (strict_types=1);
|
||
|
||
namespace app\controller\api;
|
||
|
||
use app\util\StrRandom;
|
||
use think\facade\App;
|
||
use think\Response;
|
||
|
||
class Miss extends Base {
|
||
|
||
public function index(): Response {
|
||
$this->debug([
|
||
'TpVersion' => App::version(),
|
||
'Float' => StrRandom::randomPhone()
|
||
]);
|
||
|
||
return $this->buildSuccess([
|
||
'Product' => config('apiadmin.APP_NAME'),
|
||
'Version' => config('apiadmin.APP_VERSION'),
|
||
'Company' => config('apiadmin.COMPANY_NAME'),
|
||
'ToYou' => "I'm glad to meet you(终于等到你!)"
|
||
]);
|
||
}
|
||
}
|