From e6ef5e1fcd92c4b5765f8cf2c1ea3ca45d32ff00 Mon Sep 17 00:00:00 2001 From: Michael Li Date: Sun, 30 Apr 2023 00:18:35 +0800 Subject: [PATCH] sqlc: fixed miss method error --- internal/dao/slonik/comments.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/dao/slonik/comments.go b/internal/dao/slonik/comments.go index 9b35bc3c..8e1d700e 100644 --- a/internal/dao/slonik/comments.go +++ b/internal/dao/slonik/comments.go @@ -60,7 +60,7 @@ func (s *commentSrv) GetCommentRepliesByID(ids []int64) ([]*core.CommentReplyFor 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 }