From 0562d6c08b1514101418c4816d1b8fd9830d0758 Mon Sep 17 00:00:00 2001 From: Takeno-hito <18237819+Takeno-hito@users.noreply.github.com> Date: Thu, 5 Oct 2023 14:15:17 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20=E5=A4=89=E6=95=B0=E3=82=92?= =?UTF-8?q?=E4=BB=8B=E3=81=95=E3=81=9A=E7=9B=B4=E6=8E=A5=E8=BF=94=E3=81=99?= =?UTF-8?q?=E3=82=88=E3=81=86=E3=81=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- utils/cron.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/utils/cron.go b/utils/cron.go index 4a1655c0..7edb6e52 100644 --- a/utils/cron.go +++ b/utils/cron.go @@ -170,6 +170,5 @@ func createMessage(t time.Time, rooms []*domain.Room, events []*db.Event, origin } - message := fmt.Sprintf("## %s の進捗部屋\n%s## %s 開催予定のイベント\n%s", date, roomMessage, date, eventMessage) - return message + return fmt.Sprintf("## %s の進捗部屋\n%s## %s 開催予定のイベント\n%s", date, roomMessage, date, eventMessage) }