Versions in this module Expand all Collapse all v0 v0.0.1 Nov 7, 2023 Changes in this version + type Reminder struct + Email string + Name string + Tasks []Task + Token string + type ReminderEmailNotificationUsecase interface + GenerateMessageBuffer func(fromAddress mail.Address, to string, cc []string, subject string, body string) bytes.Buffer + PrepareHTMLTemplate func(reminder Reminder) (string, error) + SendEmail func(receivers []string, subject string, body string) error + type ReminderFCMNotificationUsecase interface + SendMessage func(token string, title string, body string) error + type Task struct + TaskDate string + TaskDescription string + TaskTitle string