fix updateUserInfoEx

pull/1635/head
AndrewZuo01 2 years ago
parent 39b2c3b795
commit aa0cb48ffc

@ -50,11 +50,6 @@ type conversationServer struct {
conversationNotificationSender *notification.ConversationNotificationSender
}
func (c *conversationServer) GetConversationList(ctx context.Context, req *pbconversation.GetConversationListReq) (*pbconversation.GetConversationListResp, error) {
//TODO implement me
panic("implement me")
}
func Start(client discoveryregistry.SvcDiscoveryRegistry, server *grpc.Server) error {
rdb, err := cache.NewRedis()
if err != nil {

@ -47,21 +47,6 @@ type (
}
)
func (m *msgServer) GetMaxSeqs(ctx context.Context, req *msg.GetMaxSeqsReq) (*msg.SeqsInfoResp, error) {
//TODO implement me
panic("implement me")
}
func (m *msgServer) GetHasReadSeqs(ctx context.Context, req *msg.GetHasReadSeqsReq) (*msg.SeqsInfoResp, error) {
//TODO implement me
panic("implement me")
}
func (m *msgServer) GetMsgByConversationIDs(ctx context.Context, req *msg.GetMsgByConversationIDsReq) (*msg.GetMsgByConversationIDsResp, error) {
//TODO implement me
panic("implement me")
}
func (m *msgServer) addInterceptorHandler(interceptorFunc ...MessageInterceptorFunc) {
m.Handlers = append(m.Handlers, interceptorFunc...)
}

Loading…
Cancel
Save