github.com/TIBCOSoftware/flogo-lib@v0.5.9/util/managed/status.go (about) 1 package managed 2 3 type Status string 4 5 const ( 6 StatusStarted Status = "Started" 7 StatusStopped = "Stopped" 8 StatusFailed = "Failed" 9 ) 10 11 type Info struct { 12 Name string 13 Status Status 14 Error error 15 }