| 62 | ) |
| 63 | |
| 64 | type Controller interface { |
| 65 | Run(workers int, stopCh <-chan struct{}) |
| 66 | } |
| 67 | |
| 68 | func StartControllers(stopCh <-chan struct{}) { |
| 69 | controllerWorkers := map[int]int{ |
nothing calls this directly
no outgoing calls
no test coverage detected