mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
10 lines
164 B
PHP
10 lines
164 B
PHP
<?php
|
|
namespace app\admin\controller;
|
|
use \think\Controller;
|
|
|
|
class Index extends Controller {
|
|
public function index() {
|
|
return $this->fetch();
|
|
}
|
|
}
|