删除文件 app/center/controller

This commit is contained in:
Anyon 2022-11-27 14:41:20 +00:00 committed by Gitee
parent cfcb183117
commit 0a51f6bb78
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 0 additions and 58 deletions

View File

@ -1,34 +0,0 @@
<?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();
}
}

View File

@ -1,24 +0,0 @@
<?php
namespace app\center\controller;
use think\admin\Controller;
/**
* 在线插件管理
* Class Plugin
* @package app\center\controller
*/
class Plugin extends Controller
{
/**
* 在线插件管理
* @auth true
* @menu true
* @return void
*/
public function index()
{
$this->fetch();
}
}