mirror of
https://shylinux.com/x/icebergs
synced 2025-04-27 09:48:28 +08:00
19 lines
400 B
Go
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) {
|
|
|
|
}},
|
|
})
|
|
}
|