mirror of
https://shylinux.com/x/icebergs
synced 2025-04-26 01:24:05 +08:00
16 lines
334 B
Go
16 lines
334 B
Go
package mall
|
|
|
|
import (
|
|
ice "shylinux.com/x/icebergs"
|
|
"shylinux.com/x/icebergs/base/web"
|
|
kit "shylinux.com/x/toolkits"
|
|
)
|
|
|
|
const MALL = "mall"
|
|
|
|
var Index = &ice.Context{Name: MALL, Help: "贸易中心"}
|
|
|
|
func init() { web.Index.Register(Index, nil) }
|
|
|
|
func Prefix(arg ...ice.Any) string { return web.Prefix(MALL, kit.Keys(arg...)) }
|