Run runs the command logic
(_ *cobra.Command, args []string)
| 29 | |
| 30 | // Run runs the command logic |
| 31 | func (cmd *RunCmd) Run(_ *cobra.Command, args []string) error { |
| 32 | return runProxyCommand(args) |
| 33 | } |
| 34 | |
| 35 | func runProxyCommand(args []string) error { |
| 36 | key, err := os.ReadFile(sshPrivateKeyPath) |
nothing calls this directly
no test coverage detected