I'm looking for the Node equivalent of importing for the Any and Empty message types.
Normally I can do:
import "google/protobuf/empty.proto";
or
import "google/protobuf/any.proto";
These statements seem to fail in node. I'm using the dynamic codegen approach.
Thanks