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

10 lines
209 B
Go

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