Files
mpay/app/controller/PluginController.php
技术老胡 e524424628 更新文件
2025-04-23 23:51:21 +08:00

19 lines
270 B
PHP

<?php
declare(strict_types=1);
namespace app\controller;
use app\BaseController;
use think\facade\View;
use think\Request;
class PluginController extends BaseController
{
// 插件管理页
public function index()
{
return View::fetch();
}
}