Skip to content

Instantly share code, notes, and snippets.

@manishtiwari25
Created March 21, 2022 17:15
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 manishtiwari25/7ca151555c496febb0c91ba041c59cd7 to your computer and use it in GitHub Desktop.
Save manishtiwari25/7ca151555c496febb0c91ba041c59cd7 to your computer and use it in GitHub Desktop.
gRPC well know type example
syntax = "proto3"
import "google/protobuf/duration.proto";
import "google/protobuf/timestamp.proto";
import "google/protobuf/wrappers.proto"
message Meeting {
google.protobuf.StringValue subject = 1;
google.protobuf.Timestamp time = 2;
google.protobuf.Duration duration = 3;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment