package models // WorkflowStep an execution unit or a set of steps type WorkflowStep struct { Name string `json:"name"` Container string `json:"container"` Input string `json:"input"` Output string `json:"output"` Location string `json:"location"` }