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