mirror of
https://gitee.com/ulthon/ulthon_information.git
synced 2026-03-04 00:24:29 +08:00
20 lines
275 B
PHP
20 lines
275 B
PHP
<?php
|
|
|
|
namespace app\index\controller;
|
|
|
|
use app\BaseController as AppBaseController;
|
|
use think\facade\Config;
|
|
use think\facade\View;
|
|
use think\helper\Str;
|
|
|
|
class BaseController extends AppBaseController
|
|
{
|
|
|
|
|
|
public function initialize()
|
|
{
|
|
parent::initialize();
|
|
|
|
}
|
|
}
|