toolbox-aoaostar/app/controller/Base.php
2021-12-22 23:12:13 +08:00

18 lines
224 B
PHP

<?php
namespace app\controller;
use app\BaseController;
use app\model\Category;
use think\facade\View;
class Base extends BaseController
{
protected function initialize()
{
parent::initialize();
}
}