Hi all,
I am new to protocol buffers and would like to get to know my options with the technology.
We have a monorepo with different services written in Java and Python and would like to use protobuf to define messages that are exchanged among these services.
I thought to have a separate folder with common .proto files in the same repo.
Question is how to distribute generated classes to appropriate services from these .proto files.
In the first run I though to do a compilation and copy the generated code to each service, but to be honest, don't know the right way in long run.
Maybe having separate repo with proto files and do the compilation -> packaging -> publish using language-specific artifact distribution mechanism..
Would be so grateful for any input or idea, just to get out of the dark. :)
Alex