birthdaybot/notification/service.go

11 lines
242 B
Go
Raw Normal View History

//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
}