watchtower/pkg/types/notifier.go

8 lines
159 B
Go
Raw Normal View History

package types
2019-07-21 22:22:30 +02:00
// Notifier is the interface that all notification services have in common
type Notifier interface {
StartNotification()
SendNotification()
}