mirror of
https://github.com/containrrr/watchtower.git
synced 2025-12-14 06:06:38 +01:00
8 lines
168 B
Go
8 lines
168 B
Go
package types
|
|
|
|
// Notifier is the interface that all notification services have in common
|
|
type Notifier interface {
|
|
StartNotification()
|
|
SendNotification()
|
|
Close()
|
|
}
|