I am trying to use google/protobuf/timestamp.proto with the gRPC and Go plugin. This is how I run protoc :
protoc -I ./ ./*.proto --go_out=plugins=grpc:.
And this is my .proto :
#domain.proto syntax = "proto3"; option java_multiple_files = true; option java_package = "com.viant.xyz"; option java_outer_classname = "domain"; import "google/protobuf/timestamp.proto"; message Foo { Timestamp modifiedTime = 1; ... }
I see the following errors:
domain.proto: Import "google/protobuf/timestamp.proto" was not found or had errors. domain.proto:44:5: "Timestamp" is not defined.
Am I missing something or is it not yet supported?
source share