[recorder]服务定义

This commit is contained in:
2025-06-24 09:52:24 +08:00
parent 814f29a9bd
commit ffe1677630

15
src/Service.php Normal file
View File

@ -0,0 +1,15 @@
<?php
namespace jerryyan\recorder;
use think\admin\Plugin;
class Service extends Plugin
{
protected $appCode = 'recorder';
protected $appName = '操作记录';
public static function menu(): array
{
return [];
}
}