9 lines
150 B
Go
9 lines
150 B
Go
package notification
|
|
|
|
import (
|
|
"git.ctrlz.es/mgdelacroix/birthdaybot/model"
|
|
)
|
|
|
|
type NotificationService interface {
|
|
Notify(*model.Birthday) error
|
|
}
|