| 56 | } |
| 57 | |
| 58 | type FlowContextDriver struct { |
| 59 | Option *DriverOption |
| 60 | |
| 61 | stepGroups []*plan.StepGroup |
| 62 | taskGroups []*plan.TaskGroup |
| 63 | } |
| 64 | |
| 65 | func NewFlowContextDriver(option *DriverOption) *FlowContextDriver { |
| 66 | return &FlowContextDriver{Option: option} |
nothing calls this directly
no outgoing calls
no test coverage detected