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