17 lines
260 B
Protocol Buffer
17 lines
260 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package service_uppercase;
|
||
|
|
||
|
message DoTHINGRequest {
|
||
|
string name = 1;
|
||
|
repeated string comments = 2;
|
||
|
}
|
||
|
|
||
|
message DoTHINGResponse {
|
||
|
repeated string names = 1;
|
||
|
}
|
||
|
|
||
|
service Test {
|
||
|
rpc DoThing (DoTHINGRequest) returns (DoTHINGResponse);
|
||
|
}
|