From 53bcf853b032ffe53727490118b96897d52093e3 Mon Sep 17 00:00:00 2001 From: Seyeon_Choi Date: Mon, 11 Dec 2023 06:07:53 +0900 Subject: [PATCH] refactor: remove unnecessary code --- internal/postgres/sos_post_store.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/internal/postgres/sos_post_store.go b/internal/postgres/sos_post_store.go index 51860c9d..81f2d292 100644 --- a/internal/postgres/sos_post_store.go +++ b/internal/postgres/sos_post_store.go @@ -76,9 +76,6 @@ func (s *SosPostPostgresStore) WriteSosPost(authorID int, utcDateStart string, u request.ImageIDs[0], ).Scan(&sosPost.ID, &sosPost.AuthorID, &sosPost.Title, &sosPost.Content, &sosPost.Reward, &sosPost.DateStartAt, &sosPost.DateEndAt, &sosPost.TimeStartAt, &sosPost.TimeEndAt, &sosPost.CareType, &sosPost.CarerGender, &sosPost.RewardAmount, &sosPost.ThumbnailID) - fmt.Println(sosPost.DateStartAt) - fmt.Println(sosPost.DateEndAt) - fmt.Println(sosPost.TimeStartAt) if err != nil { tx.Rollback() return nil, err