Starts a remote SSH server to allow the user to connect to the codespace via SSH
(ctx context.Context)
| 214 | |
| 215 | // Starts a remote SSH server to allow the user to connect to the codespace via SSH |
| 216 | func (i *invoker) StartSSHServer(ctx context.Context) (int, string, error) { |
| 217 | return i.StartSSHServerWithOptions(ctx, StartSSHServerOptions{}) |
| 218 | } |
| 219 | |
| 220 | // Starts a remote SSH server to allow the user to connect to the codespace via SSH |
| 221 | func (i *invoker) StartSSHServerWithOptions(ctx context.Context, options StartSSHServerOptions) (int, string, error) { |
nothing calls this directly
no test coverage detected