mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
24 lines
347 B
PHP
24 lines
347 B
PHP
<?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();
|
|
}
|
|
} |