# 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`](https://github.com/kleisli-io/metaBuilder/blob/main/examples/idl/schema.proto).

```protobuf
syntax = "proto3";

package metabuilder.example;

message Greeting {
  string text = 1;
  string language = 2;
}

service GreetingService {
  rpc SayHello (Greeting) returns (Greeting);
}
```
