I have two services: Story and Tag. The files are structured in this way:
Story
|-- StoryService
| `-- proto
| `-- storyservice.proto
`-- TagService
`-- proto
`-- tagservice.proto
Each one of .proto
files needs to use messages from the other one. How can I import them into each other?
I tried import "StoryService/proto/storyservice.proto"
but it didn't work.