We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Include .pb.go file(s) so no requirement to run protoc locally. Something like:
.pb.go
protoc
syntax = "proto3"; import "google/protobuf/timestamp.proto"; import "google/protobuf/duration.proto"; message Lifetime { google.protobuf.Timestamp created = 1; google.protobuf.Duration ttl = 2; } message PeerLoadRequest { string cache = 1; string key = 2; } message PeerLoadReply { bytes value = 1; Lifetime lifetime = 2; } service PeerLoader { rpc PeerLoad(PeerLoadRequest) returns (PeerLoadReply) {} }
The text was updated successfully, but these errors were encountered:
This should be extended to the public interface for #1.
Sorry, something went wrong.
No branches or pull requests
Include
.pb.go
file(s) so no requirement to runprotoc
locally. Something like:The text was updated successfully, but these errors were encountered: