1
0
mirror of https://github.com/containrrr/watchtower.git synced 2025-01-08 15:06:10 +02:00
watchtower/pkg/types/notifier.go
2019-07-21 22:22:30 +02:00

8 lines
159 B
Go

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