796c5ad42d
transport/ssh: update go-netssh to new version
=> supports CloseWrite and Deadlines
=> build: require Go 1.11 (netssh requires it)
16 lines
203 B
Protocol Buffer
16 lines
203 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package pdu;
|
|
|
|
|
|
service Greeter {
|
|
rpc Greet(GreetRequest) returns (GreetResponse) {}
|
|
}
|
|
|
|
message GreetRequest {
|
|
string name = 1;
|
|
}
|
|
|
|
message GreetResponse {
|
|
string msg = 1;
|
|
} |