1
0
mirror of https://github.com/containrrr/watchtower.git synced 2025-10-31 00:17:44 +02:00
Files
watchtower/pkg/types/notifier.go
2020-08-08 22:55:51 +02:00

9 lines
168 B
Go

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