allocatr/addons/command/controller/Index.php
2025-02-28 20:24:38 +08:00

16 lines
208 B
PHP
Executable File

<?php
namespace addons\command\controller;
use think\addons\Controller;
class Index extends Controller
{
public function index()
{
$this->error("当前插件暂无前台页面");
}
}