16 lines
238 B
Protocol Buffer
16 lines
238 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package service;
|
|
|
|
message DoThingRequest {
|
|
int32 iterations = 1;
|
|
}
|
|
|
|
message DoThingResponse {
|
|
int32 successfulIterations = 1;
|
|
}
|
|
|
|
service ExampleService {
|
|
rpc DoThing (DoThingRequest) returns (DoThingResponse);
|
|
}
|