Re: [go-nuts] Re: go src organization question

2018-10-21 Thread Sankar P
I am yet to go through your mail in detail. But I will answer the primary question first. I have a monolithic repository which contains all my go backend related code in a single project. I have about 8 packages that are internally defined inside my repo, and I do not need any version management fo

[go-nuts] Re: go src organization question

2018-10-21 Thread thepudds1460
Hi Sankar, How many repos are you directly modifying? Most projects are likely following the simplest approach of using a single module per repository, which typically would mean creating one go.mod file located in the root directory of each repository. (The official modules proposal predicts