2023-07-01 17:00:48 +01:00
|
|
|
package notification
|
|
|
|
|
2023-07-01 17:03:15 +01:00
|
|
|
import (
|
|
|
|
"git.ctrlz.es/mgdelacroix/birthdaybot/model"
|
|
|
|
)
|
|
|
|
|
2023-07-01 17:00:48 +01:00
|
|
|
type NotificationService interface {
|
2023-07-01 17:03:15 +01:00
|
|
|
Notify(*model.Birthday) error
|
2023-07-01 17:00:48 +01:00
|
|
|
}
|