Files
python-betterproto/betterproto/tests/inputs/service/service.proto
2020-05-24 20:02:41 +02:00

16 lines
228 B
Protocol Buffer

syntax = "proto3";
package service;
message DoThingRequest {
int32 iterations = 1;
}
message DoThingResponse {
int32 successfulIterations = 1;
}
service Test {
rpc DoThing (DoThingRequest) returns (DoThingResponse);
}