12 lines
279 B
Go
12 lines
279 B
Go
//go:generate mockgen -source=service.go -destination=mocks/service_mock.go -package=mocks
|
|
package notification
|
|
|
|
import (
|
|
"text/template"
|
|
|
|
"git.ctrlz.es/mgdelacroix/birthdaybot/model"
|
|
)
|
|
|
|
type NotificationService interface {
|
|
Notify(*model.Birthday, *template.Template) error
|
|
}
|