mirror of
https://shylinux.com/x/icebergs
synced 2025-04-25 17:18:05 +08:00
16 lines
280 B
Go
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:]...)
|
|
}},
|
|
})
|
|
}
|