mirror of
https://github.com/containrrr/watchtower.git
synced 2025-09-21 21:30:48 +02:00
11 lines
229 B
Go
11 lines
229 B
Go
package types
|
|
|
|
// Notifier is the interface that all notification services have in common
|
|
type Notifier interface {
|
|
StartNotification()
|
|
SendNotification(Report)
|
|
AddLogHook()
|
|
GetNames() []string
|
|
GetURLs() []string
|
|
Close()
|
|
}
|