1
0
forked from x/icebergs
icebergs/misc/mp/mp.go
2021-10-20 16:51:21 +08:00

14 lines
257 B
Go

package mp
import (
ice "shylinux.com/x/icebergs"
"shylinux.com/x/icebergs/base/web"
"shylinux.com/x/icebergs/core/chat"
)
const MP = "mp"
var Index = &ice.Context{Name: MP, Help: "小程序"}
func init() { chat.Index.Register(Index, &web.Frame{}) }