Skip to content

Instantly share code, notes, and snippets.

@aligoren
Created May 30, 2022 18:03
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 aligoren/9ce89d2dbb82fb98e4e7b0f0d8870e72 to your computer and use it in GitHub Desktop.
Save aligoren/9ce89d2dbb82fb98e4e7b0f0d8870e72 to your computer and use it in GitHub Desktop.
syntax = "proto3";
package main;
option go_package = "./protos";
service HelloService {
rpc GetHello(HelloRequest) returns (HelloResponse) {}
}
message HelloRequest {
string message = 1;
}
message HelloResponse {
string message = 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment