Files
ulthon_information/app/index/controller/BaseController.php
2020-08-08 22:02:18 +08:00

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();
}
}