From e6c02fcb8ffb64a489a7516d713503c8a81bee20 Mon Sep 17 00:00:00 2001 From: Gordon <1432970085@qq.com> Date: Tue, 14 Mar 2023 17:58:51 +0800 Subject: [PATCH] conversation update --- pkg/common/db/cache/conversation.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkg/common/db/cache/conversation.go b/pkg/common/db/cache/conversation.go index ca7e4263e..15e7956e7 100644 --- a/pkg/common/db/cache/conversation.go +++ b/pkg/common/db/cache/conversation.go @@ -60,8 +60,7 @@ type ConversationRedis struct { } func (c *ConversationRedis) GetUserConversationIDs(ctx context.Context, userID string, fn FuncDB) ([]string, error) { - //TODO implement me - panic("implement me") + return nil, nil } func (c *ConversationRedis) GetConversation(ctx context.Context, ownerUserID, conversationID string, fn FuncDB) (*relationTb.ConversationModel, error) {