Files
mpay/app/controller/PluginController.php
技术老胡 8bdac2b62c 插件中收
2024-08-24 14:35:57 +08:00

17 lines
228 B
PHP

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