mirror of
https://shylinux.com/x/icebergs
synced 2025-04-25 17:18:05 +08:00
14 lines
265 B
Go
14 lines
265 B
Go
package lark
|
|
|
|
import (
|
|
ice "shylinux.com/x/icebergs"
|
|
"shylinux.com/x/icebergs/base/web"
|
|
"shylinux.com/x/icebergs/core/chat"
|
|
)
|
|
|
|
const LARK = "lark"
|
|
|
|
var Index = &ice.Context{Name: LARK, Help: "机器人"}
|
|
|
|
func init() { chat.Index.Register(Index, &web.Frame{}) }
|