handle google.protobuf.timestamp

This commit is contained in:
jhayotte
2017-06-08 16:40:52 +02:00
parent 098b247649
commit d0c5bb5a97
6 changed files with 49 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
syntax = "proto3";
package foo;
import "google/protobuf/timestamp.proto";
message GetFooRequest { google.protobuf.Timestamp timestamp = 1;}
message GetFooResponse { string result = 1;}
service foosvc {
rpc GetFoo (GetFooRequest) returns (GetFooResponse){}
}