mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
18 lines
439 B
PHP
18 lines
439 B
PHP
<?php
|
||
|
||
namespace app\api\controller;
|
||
|
||
|
||
class Index extends Base {
|
||
public function index() {
|
||
$this->debug('show something...');
|
||
|
||
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(终于等到你!)",
|
||
]);
|
||
}
|
||
}
|