Created
November 1, 2019 10:39
-
-
Save Cartmanishere/cc47ec4ce0aa28ff041a63c66a587f8a to your computer and use it in GitHub Desktop.
Protobuf definition file for grpc-python-golang example
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"; | |
message Request { | |
string text = 1; | |
} | |
message Response { | |
repeated string keywords = 1; | |
} | |
service KeywordService { | |
rpc GetKeywords (Request) returns (Response) {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment