Skip to content

Instantly share code, notes, and snippets.

@rezaramadhanirianto
Created February 2, 2022 08:23
Show Gist options
  • Select an option

  • Save rezaramadhanirianto/0cefaf8a903b661d0405faf3346d4fa0 to your computer and use it in GitHub Desktop.

Select an option

Save rezaramadhanirianto/0cefaf8a903b661d0405faf3346d4fa0 to your computer and use it in GitHub Desktop.
syntax="proto3";
package output;
option go_package = "/output";
import "google/protobuf/empty.proto";
message OutputRequest{
string title = 1;
}
message Output{
string id = 1;
string title = 2;
}
service OutputService{
rpc SendOutput(OutputRequest) returns (google.protobuf.Empty) {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment