mirror of
https://gitee.com/apiadmin/ApiAdmin.git
synced 2025-04-06 03:58:00 +08:00
19 lines
245 B
PHP
19 lines
245 B
PHP
<?php
|
|
/**
|
|
* 工程基类
|
|
* @since 2017/02/28 创建
|
|
* @author zhaoxiang <zhaoxiang051405@gmail.com>
|
|
*/
|
|
|
|
namespace app\wiki\controller;
|
|
|
|
|
|
use think\Controller;
|
|
|
|
class Base extends Controller {
|
|
|
|
public function _initialize() {
|
|
|
|
}
|
|
|
|
} |