16 lines
208 B
PHP
Raw Normal View History

2025-02-28 09:29:43 +08:00
<?php
namespace addons\command\controller;
use think\addons\Controller;
class Index extends Controller
{
public function index()
{
$this->error("当前插件暂无前台页面");
}
}