| 1 | package configs |
| 2 | |
| 3 | type SetupArgs interface { |
| 4 | Repair() bool |
| 5 | InstallPorts() bool |
| 6 | } |
| 7 | |
| 8 | type setupArgs struct { |
| 9 | repair bool // Called to check and fix build environment. |
nothing calls this directly
no outgoing calls
no test coverage detected