mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 23:42:48 +08:00
21 lines
257 B
PHP
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();
|
|
|
|
|
|
}
|
|
|
|
}
|