6 lines
124 B
Go
6 lines
124 B
Go
package notificationProvider
|
|
|
|
type NotificationProvider interface {
|
|
SendNotification(title string, message string) error
|
|
}
|