mirror of
https://github.com/fluxcd/flagger.git
synced 2026-03-02 09:40:52 +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
|
|
}
|