| 123456789101112131415161718 |
- package bridge
- import (
- "dashoo.cn/common_definition/comm_def"
- "dashoo.cn/opms_libary/plugin/dingtalk/context"
- "github.com/smallnest/rpcx/protocol"
- )
- //DingTalkHandler struct
- type DingTalkHandler struct {
- *context.Context
- }
- //Handle 处理微信的请求消息
- func (h *DingTalkHandler) Handle(ctx context.Context, msg protocol.Message, commonMsg comm_def.CommonMsg) error {
- return nil
- }
|