Created
October 9, 2021 17:03
-
-
Save GaetanoPiazzolla/6d748b8650aecbb4873fd8706ef10377 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Related to medium article: https://gae-piaz.medium.com/springboot-with-grpc-fast-start-implementation-f8881fda0973
