mirror of
https://github.com/containrrr/watchtower.git
synced 2024-12-12 09:04:17 +02:00
8 lines
159 B
Go
8 lines
159 B
Go
package types
|
|
|
|
// Notifier is the interface that all notification services have in common
|
|
type Notifier interface {
|
|
StartNotification()
|
|
SendNotification()
|
|
}
|