===== StepsGroup =====
| 709 | // ===== StepsGroup ===== |
| 710 | |
| 711 | type StepsGroup struct { |
| 712 | id string |
| 713 | name string |
| 714 | description string |
| 715 | steps []Step |
| 716 | config *StepConfig |
| 717 | } |
| 718 | |
| 719 | func NewStepsGroup(name string, steps ...Step) *StepsGroup { |
| 720 | return &StepsGroup{ |
nothing calls this directly
no outgoing calls
no test coverage detected