Skip to content

Commit 412cc59

Browse files
committed
feat: 增加隐藏菜单
1 parent af633d0 commit 412cc59

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

engine/plugin.go

+9-7
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ import (
1212
)
1313

1414
type PluginMagic struct {
15-
Name string // 插件名字
16-
Desc string // 插件描述
17-
Commands []string // 插件命令
15+
Name string // 插件名字
16+
Desc string // 插件描述
17+
Commands []string // 插件命令
18+
HiddenMenu bool // 是否隐藏菜单
1819
}
1920

2021
type Plugin struct {
@@ -39,9 +40,10 @@ func InstallPlugin(conf config.Plugin) *Plugin {
3940

4041
plugin := &Plugin{
4142
PluginMagic: PluginMagic{
42-
Name: p.Name,
43-
Desc: p.Desc,
44-
Commands: p.Commands,
43+
Name: p.Name,
44+
Desc: p.Desc,
45+
Commands: p.Commands,
46+
HiddenMenu: p.HiddenMenu,
4547
},
4648
Config: conf,
4749
}
@@ -52,7 +54,7 @@ func InstallPlugin(conf config.Plugin) *Plugin {
5254
return nil
5355
}
5456
if conf != config.Global {
55-
if len(plugin.Commands) == 0 {
57+
if !plugin.HiddenMenu && len(plugin.Commands) == 0 {
5658
log.Errorf("failed to install plugin %s: no commands", plugin.Name)
5759
return nil
5860
} else {

plugins/cronjob/main.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ type Job struct {
2323
var (
2424
pluginInfo = &CronJob{
2525
PluginMagic: engine.PluginMagic{
26-
Desc: "🚀 输入 /?? 拼音缩写 => 获取拼音缩写翻译",
27-
Commands: []string{"/??"},
26+
HiddenMenu: true,
2827
},
2928
}
3029
plugin = engine.InstallPlugin(pluginInfo)

0 commit comments

Comments
 (0)