Api文档
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
627 B

<?php
namespace Plugins\ApiDoc;
use App\Common\Interfaces\PluginsInstallInterface;
class Install implements PluginsInstallInterface
{
public static function run(): void
{
echo "===============================================================\n";
echo "ApiDoc 安装成功。\n";
echo "示例代码查看 ApiDoc/Controller/DemoController.php。\n";
echo "示例效果查看文档访问地址。\n";
echo "文档访问地址: http://127.0.0.1/admin/plugins/api-doc\n";
echo "===============================================================\n";
}
}