File tree 2 files changed +10
-9
lines changed
2 files changed +10
-9
lines changed Original file line number Diff line number Diff line change @@ -12,9 +12,10 @@ import (
12
12
)
13
13
14
14
type PluginMagic struct {
15
- Name string // 插件名字
16
- Desc string // 插件描述
17
- Commands []string // 插件命令
15
+ Name string // 插件名字
16
+ Desc string // 插件描述
17
+ Commands []string // 插件命令
18
+ HiddenMenu bool // 是否隐藏菜单
18
19
}
19
20
20
21
type Plugin struct {
@@ -39,9 +40,10 @@ func InstallPlugin(conf config.Plugin) *Plugin {
39
40
40
41
plugin := & Plugin {
41
42
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 ,
45
47
},
46
48
Config : conf ,
47
49
}
@@ -52,7 +54,7 @@ func InstallPlugin(conf config.Plugin) *Plugin {
52
54
return nil
53
55
}
54
56
if conf != config .Global {
55
- if len (plugin .Commands ) == 0 {
57
+ if ! plugin . HiddenMenu && len (plugin .Commands ) == 0 {
56
58
log .Errorf ("failed to install plugin %s: no commands" , plugin .Name )
57
59
return nil
58
60
} else {
Original file line number Diff line number Diff line change @@ -23,8 +23,7 @@ type Job struct {
23
23
var (
24
24
pluginInfo = & CronJob {
25
25
PluginMagic : engine.PluginMagic {
26
- Desc : "🚀 输入 /?? 拼音缩写 => 获取拼音缩写翻译" ,
27
- Commands : []string {"/??" },
26
+ HiddenMenu : true ,
28
27
},
29
28
}
30
29
plugin = engine .InstallPlugin (pluginInfo )
You can’t perform that action at this time.
0 commit comments