Skip to content

Instantly share code, notes, and snippets.

@notmedia
Created August 29, 2022 13:48
Show Gist options
  • Save notmedia/8fb4c1ca087950900fb38cf85c934978 to your computer and use it in GitHub Desktop.
Save notmedia/8fb4c1ca087950900fb38cf85c934978 to your computer and use it in GitHub Desktop.
tls_service.proto
syntax = "proto3";
package tls_service.v1;
message SimpleMessage {
string id = 1;
}
service TLSService {
rpc Unary(SimpleMessage) returns (SimpleMessage);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment