mirror of
https://github.com/aoaostar/toolbox.git
synced 2026-01-08 13:06:40 +00:00
18 lines
224 B
PHP
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();
|
|
|
|
}
|
|
} |