birthdaybot/notification/service.go

10 lines
150 B
Go
Raw Normal View History

package notification
import (
"git.ctrlz.es/mgdelacroix/birthdaybot/model"
)
type NotificationService interface {
Notify(*model.Birthday) error
}