cli/internal/codespaces/rpc/ssh/ssh_server_host_service.v1.proto
2023-01-10 11:59:56 -08:00

20 lines
409 B
Protocol Buffer

syntax = "proto3";
option go_package = "./ssh";
package Codespaces.Grpc.SshServerHostService.v1;
service SshServerHost {
rpc StartRemoteServerAsync (StartRemoteServerRequest) returns (StartRemoteServerResponse);
}
message StartRemoteServerRequest {
string UserPublicKey = 1;
}
message StartRemoteServerResponse {
bool Result = 1;
string ServerPort = 2;
string User = 3;
string Message = 4;
}