10 lines
242 B
Go
10 lines
242 B
Go
//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
|
|
}
|