GetCommand returns the run command structure
()
| 85 | |
| 86 | // GetCommand returns the run command structure |
| 87 | func GetCommand() cmdline.Command { |
| 88 | deps := wsllib.NewDependencies() |
| 89 | return GetCommandWithDeps(deps.Wsl) |
| 90 | } |
| 91 | |
| 92 | // GetCommandWithDeps returns the run command structure with injectable dependencies. |
| 93 | func GetCommandWithDeps(wsl wsllib.WslLib) cmdline.Command { |