mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
15 lines
237 B
PHP
15 lines
237 B
PHP
<?php
|
|
/**
|
|
*
|
|
* @since 2016-02-18
|
|
* @author zhaoxiang <zhaoxiang051405@outlook.com>
|
|
*/
|
|
|
|
namespace app\index\controller;
|
|
use \think\Controller;
|
|
|
|
class User extends Controller {
|
|
public function index(){
|
|
echo 11111;
|
|
}
|
|
} |