Files
realDynDNS/pkg/notificationProvider/notificationProvider.go

6 lines
124 B
Go

package notificationProvider
type NotificationProvider interface {
SendNotification(title string, message string) error
}