package MessageHandlers import "wechat-api/internal/svc" func GetWechatStrategies() map[string]func(*svc.ServiceContext) MessageHandlerStrategy { return map[string]func(*svc.ServiceContext) MessageHandlerStrategy{ "FriendPushNotice": toStrategy(NewFriendPushNoticeTypeHandler), //"ChatroomPushNotice": toStrategy(NewChatroomPushNoticeTypeHandler), "ContactLabelInfoNotice": toStrategy(NewContactLabelInfoNotice), "FindContactTaskResult": toStrategy(NewFindContactTaskResultNoticeHandler), "TaskResultNotice": toStrategy(NewTaskResultNoticeHandler), } }