printStepHeader prints a step header
(step, total int, title string)
| 165 | |
| 166 | // printStepHeader prints a step header |
| 167 | func printStepHeader(step, total int, title string) { |
| 168 | fmt.Printf("Step %d/%d: %s\n", step, total, title) |
| 169 | fmt.Println("──────────────────────────────────────") |
| 170 | fmt.Println() |
| 171 | } |
| 172 | |
| 173 | // printSetupComplete prints the completion message |
| 174 | func printSetupComplete() { |
no outgoing calls
no test coverage detected