this repo has no description
at 74cab56f5644cd528f08382cb44fb584d1bd7e01 9 lines 183 B view raw
1package engine 2 3import "errors" 4 5var ( 6 ErrOOMKilled = errors.New("oom killed") 7 ErrTimedOut = errors.New("timed out") 8 ErrWorkflowFailed = errors.New("workflow failed") 9)