mirror of
https://github.com/fluxcd/flagger.git
synced 2026-03-02 01:30:48 +00:00
11 lines
194 B
Go
11 lines
194 B
Go
package notifier
|
|
|
|
type Interface interface {
|
|
Post(workload string, namespace string, message string, fields []Field, severity string) error
|
|
}
|
|
|
|
type Field struct {
|
|
Name string
|
|
Value string
|
|
}
|