forked from x/icebergs
13 lines
237 B
Go
13 lines
237 B
Go
package chat
|
|
|
|
import (
|
|
ice "shylinux.com/x/icebergs"
|
|
"shylinux.com/x/icebergs/base/web"
|
|
)
|
|
|
|
const CHAT = "chat"
|
|
|
|
var Index = &ice.Context{Name: CHAT, Help: "聊天中心"}
|
|
|
|
func init() { web.Index.Register(Index, &web.Frame{}, FAVOR) }
|