watchtower/pkg/types/notifier.go
2021-03-28 21:04:11 +02:00

9 lines
189 B
Go

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