collectiveidea/protoc-gen-twirp_ruby

View on GitHub
example/hello_world.proto

Summary

Maintainability
Test Coverage
syntax = "proto3";
package example.hello_world;

service HelloWorldService {
  rpc Hello(HelloRequest) returns (HelloResponse);
}

message HelloRequest {
  string name = 1;
}

message HelloResponse {
  string message = 1;
}