Files
2020-08-08 23:25:26 +08:00

21 lines
257 B
PHP

<?php
namespace app\index\controller;
use app\model\Category;
use app\model\Nav;
use app\model\Post;
use think\facade\View;
use think\helper\Str;
class Common extends BaseController
{
public function initialize()
{
parent::initialize();
}
}