1
0
mirror of https://shylinux.com/x/icebergs synced 2025-04-26 01:24:05 +08:00
icebergs/core/mall/custom.go
2023-10-29 00:00:24 +08:00

20 lines
363 B
Go

package mall
import (
ice "shylinux.com/x/icebergs"
"shylinux.com/x/icebergs/base/aaa"
"shylinux.com/x/icebergs/base/mdb"
)
const CUSTOM = "custom"
func init() {
Index.MergeCommands(ice.Commands{
CUSTOM: {Help: "顾客", Actions: ice.MergeActions(mdb.HashAction(
mdb.SHORT, aaa.USERNAME,
)), Hand: func(m *ice.Message, arg ...string) {
}},
})
}