2023-07-10 12:43:59 +01:00
|
|
|
//go:generate mockgen -source=service.go -destination=mocks/service_mock.go -package=mocks
|
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
|
|
|
}
|