Skip to content

Instantly share code, notes, and snippets.

@fzankl
Created January 24, 2021 09:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fzankl/2cc50554a5423472c053dc166c439480 to your computer and use it in GitHub Desktop.
Save fzankl/2cc50554a5423472c053dc166c439480 to your computer and use it in GitHub Desktop.
Sample gRPC service definition
syntax = "proto3";
option csharp_namespace = "GrpcSamples";
service FooService {
rpc GetFoo (FooRequest) returns (FooResponse);
}
message FooRequest {
string message = 1;
}
message FooResponse {
string message = 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment