protocol buffers - Organize proto files into folder in Google Protobuf -
currently, have more 100 proto files define message , put in same "prototypes" folder. bit of mess, want organize proto files folder, below:
before organization:
prototypes/protocmd1.proto prototypes/protocmd2.proto prototypes/protocmd3.proto prototypes/protomsg1.proto prototypes/protomsg2.proto prototypes/protomsg3.proto
after organization:
prototypes/cmd/protocmd1.proto prototypes/cmd/protocmd2.proto prototypes/cmd/protocmd3.proto prototypes/msg/protomsg1.proto prototypes/msg/protomsg2.proto prototypes/msg/protomsg3.proto
the problem after organization, cmd-proto no longer see msg-proto, impossible import msg-proto. there anyway overcome this? far google, there no result, maybe i've overlooked something? appreciated. all.
Comments
Post a Comment