//go:generate mockgen -source=service.go -destination=service_mock.go -package=notification package notification import ( "git.ctrlz.es/mgdelacroix/birthdaybot/model" ) type NotificationService interface { Notify(*model.Birthday) error }