operationsbus/status.go (9 lines of code) (raw):
package operationsbus
// All the status types that should be supported.
const (
Unknown string = "Unknown"
Pending = "Pending"
In_Progress = "In_Progress"
Completed = "Completed"
Failed = "Failed"
Cancelled = "Cancelled"
)