1
0
mirror of https://shylinux.com/x/icebergs synced 2025-04-27 09:48:28 +08:00
icebergs/core/mall/order.go
2023-10-26 17:59:12 +08:00

19 lines
400 B
Go

package mall
import (
ice "shylinux.com/x/icebergs"
"shylinux.com/x/icebergs/base/mdb"
)
const ORDER = "order"
func init() {
Index.MergeCommands(ice.Commands{
ORDER: {Name: "order hash auto", Help: "订单", Actions: ice.MergeActions(ice.Actions{
mdb.CREATE: {Name: "create zone* type name* text price* count* image*=4@img"},
}), Hand: func(m *ice.Message, arg ...string) {
}},
})
}