===== ParallelStep =====
| 487 | // ===== ParallelStep ===== |
| 488 | |
| 489 | type ParallelStep struct { |
| 490 | id string |
| 491 | name string |
| 492 | description string |
| 493 | steps []Step |
| 494 | config *StepConfig |
| 495 | } |
| 496 | |
| 497 | func NewParallelStep(name string, steps ...Step) *ParallelStep { |
| 498 | return &ParallelStep{ |
nothing calls this directly
no outgoing calls
no test coverage detected