===== 辅助函数 =====
(steps []Step)
| 459 | // ===== 辅助函数 ===== |
| 460 | |
| 461 | func getStepNames(steps []Step) []string { |
| 462 | names := make([]string, len(steps)) |
| 463 | for i, step := range steps { |
| 464 | names[i] = step.Name() |
| 465 | } |
| 466 | return names |
| 467 | } |
| 468 | |
| 469 | // ===== Router 事件(为将来的流式支持准备)===== |
| 470 |
no test coverage detected