mirror of
https://github.com/fluxcd/flagger.git
synced 2026-02-28 16:50:31 +00:00
11 lines
188 B
Go
11 lines
188 B
Go
package notifier
|
|
|
|
type Interface interface {
|
|
Post(workload string, namespace string, message string, fields []Field, warn bool) error
|
|
}
|
|
|
|
type Field struct {
|
|
Name string
|
|
Value string
|
|
}
|