1
0
forked from x/icebergs
icebergs/core/wiki/brief.go
2023-04-12 10:35:06 +08:00

16 lines
280 B
Go

package wiki
import (
ice "shylinux.com/x/icebergs"
)
const BRIEF = "brief"
func init() {
Index.MergeCommands(ice.Commands{
BRIEF: {Name: "brief text", Help: "摘要", Hand: func(m *ice.Message, arg ...string) {
_wiki_template(m, "", "", arg[0], arg[1:]...)
}},
})
}