2022-11-27 16:34:48 +08:00

34 lines
490 B
PHP

<?php
namespace app\center\controller;
use think\admin\Controller;
/**
* 应用插件中心
* Class Index
* @package app\center\contrller
*/
class Index extends Controller
{
/**
* 显示插件中心
* @auth true
* @menu true
* @return void
*/
public function index()
{
$this->fetch();
}
/**
* 显示我的插件
* @auth true
* @return void
*/
public function plugin()
{
$this->fetch();
}
}