watchtower/pkg/types/notifier.go
2022-09-07 15:22:46 +02:00

11 lines
229 B
Go

package types
// Notifier is the interface that all notification services have in common
type Notifier interface {
StartNotification()
SendNotification(Report)
AddLogHook()
GetNames() []string
GetURLs() []string
Close()
}