Skip to content

Instantly share code, notes, and snippets.

@GaetanoPiazzolla
Created October 9, 2021 17:03
Show Gist options
  • Save GaetanoPiazzolla/6d748b8650aecbb4873fd8706ef10377 to your computer and use it in GitHub Desktop.
Save GaetanoPiazzolla/6d748b8650aecbb4873fd8706ef10377 to your computer and use it in GitHub Desktop.
syntax = "proto3";
option java_multiple_files = true;
option java_package = "gae.piaz.grpc.lib";
option java_outer_classname = "FirstProto";
service Simple {
rpc SayHello (HelloRequest) returns (HelloReply) {
}
}
message HelloRequest {
string name = 1;
}
message HelloReply {
string message = 1;
}
@GaetanoPiazzolla
Copy link
Author

GaetanoPiazzolla commented Oct 9, 2021

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment