1
0
forked from x/icebergs
icebergs/core/mall/store.go
2023-10-29 00:00:24 +08:00

15 lines
211 B
Go

package mall
import (
ice "shylinux.com/x/icebergs"
)
const STORE = "store"
func init() {
Index.MergeCommands(ice.Commands{
STORE: {Help: "商店", Hand: func(m *ice.Message, arg ...string) {
}},
})
}