Skip to content

Instantly share code, notes, and snippets.

@Cartmanishere
Created November 1, 2019 10:39
Show Gist options
  • Save Cartmanishere/cc47ec4ce0aa28ff041a63c66a587f8a to your computer and use it in GitHub Desktop.
Save Cartmanishere/cc47ec4ce0aa28ff041a63c66a587f8a to your computer and use it in GitHub Desktop.
Protobuf definition file for grpc-python-golang example
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