Co-authored-by: Timo Behrendt <t.behrendt@t00n.de> Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
6 lines
124 B
Go
6 lines
124 B
Go
package notificationProvider
|
|
|
|
type NotificationProvider interface {
|
|
SendNotification(title string, message string) error
|
|
}
|