watchtower/pkg/types/notifier.go
2020-08-08 22:55:51 +02:00

8 lines
168 B
Go

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