unplugged-system/system/chre/test/simulation/rpc/rpc_test.proto

14 lines
248 B
Protocol Buffer
Raw Permalink Normal View History

syntax = "proto3";
package chre.rpc;
service RpcTestService {
// Increment a number.
rpc Increment(NumberMessage) returns (NumberMessage) {}
}
// Request and response for the Increment service.
message NumberMessage {
uint32 number = 1;
}