schema.proto
This schema is the source artifact consumed by the IDL builder. The builder asks for C++ and Java generated views from the same input.
Source path: examples/idl/schema.proto.
syntax = "proto3";
package metabuilder.example;
message Greeting {
string text = 1;
string language = 2;
}
service GreetingService {
rpc SayHello (Greeting) returns (Greeting);
}