diff --git a/core/wiki/audio.go b/core/wiki/audio.go new file mode 100644 index 00000000..18233b62 --- /dev/null +++ b/core/wiki/audio.go @@ -0,0 +1,17 @@ +package wiki + +import ( + ice "shylinux.com/x/icebergs" +) +const AUDIO = "audio" + +func init() { + Index.MergeCommands(ice.Commands{ + AUDIO: {Name: "audio path auto", Help: "音频", Actions: ice.MergeActions( + ), Hand: func(m *ice.Message, arg ...string) { + if len(arg) > 0 { + m.Echo("", arg[0]) + } + }}, + }) +} \ No newline at end of file