this repo has no description
at bcb7d4cc5e8b3acca10b609a631e3ece503d8c73 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)