mirror of
https://gitee.com/technical-laohu/mpay.git
synced 2026-05-07 01:01:10 +08:00
19 lines
270 B
PHP
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();
|
|
}
|
|
}
|