Files
flagger/pkg/notifier/notifier.go
2019-07-06 15:47:12 +03:00

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
}