From c43a8d71ac3a1e553d46c6b6fead5db9aaf539fd Mon Sep 17 00:00:00 2001 From: Michael Li Date: Sun, 30 Apr 2023 00:17:36 +0800 Subject: [PATCH] sqlx: fixed miss method error --- internal/dao/sakila/comments.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/dao/sakila/comments.go b/internal/dao/sakila/comments.go index 16223ec4..c2858115 100644 --- a/internal/dao/sakila/comments.go +++ b/internal/dao/sakila/comments.go @@ -57,7 +57,7 @@ func (s *commentSrv) GetCommentContentsByIDs(ids []int64) ([]*core.CommentConten return nil, nil } -func (s *commentSrv) GetCommentThumbsMap(tweetId int64) (cs.CommentThumbsMap, cs.CommentThumbsMap, error) { +func (s *commentSrv) GetCommentThumbsMap(userId int64, tweetId int64) (cs.CommentThumbsMap, cs.CommentThumbsMap, error) { // TODO return nil, nil, debug.ErrNotImplemented }