Skip to content

Instantly share code, notes, and snippets.

@utrack
Created July 16, 2020 14:55
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 utrack/0cac21b0ca1fafb96ef82afe15418037 to your computer and use it in GitHub Desktop.
Save utrack/0cac21b0ca1fafb96ef82afe15418037 to your computer and use it in GitHub Desktop.
Sample protofile for pbtree README
syntax = "proto3";
package com.pbtree.example;
import "google/protobuf/timestamp.proto";
message Response {
google.protobuf.Timestamp now = 1;
}
message Request {
}
service MyService {
rpc MyRPC (Request) returns (Response) {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment