1
0
mirror of https://shylinux.com/x/icebergs synced 2025-04-27 01:48:27 +08:00
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) {
}},
})
}