Re: [go-nuts] nested modules in a single repo

2019-03-09 Thread Abhishek Sudhakaran
example/index/blob/master/009_submodules/README.md#background) > > > it's highly likely this setup will suit all your needs, but please ask > back here in case you come across a situation that you think is not > covered. > > On Sat, 9 Mar 2019 at 08:42, Abhishek Sudhakaran

[go-nuts] Re: nested modules in a single repo

2019-03-09 Thread Abhishek Sudhakaran
what about tags ? they are required in this case also (for the bll/*) ? On Saturday, March 9, 2019 at 2:34:18 AM UTC+5:30, Tamás Gulácsi wrote: > > Use only one go.mod, at the root level of the project. -- You received this message because you are subscribed to the Google Groups "golang-nuts" g

Re: [go-nuts] nested modules in a single repo

2019-03-09 Thread Abhishek Sudhakaran
; > > > Quick first question: are you absolutely sure you need multiple modules? > > https://github.com/golang/go/wiki/Modules#faqs--multi-module-repositories > > On Fri, 8 Mar 2019 at 20:49, Abhishek Sudhakaran > wrote: > > > > Trying t

[go-nuts] nested modules in a single repo

2019-03-08 Thread Abhishek Sudhakaran
Trying to make modules work for the below project structure . ├── bll │ ├── billing │ │ ├── details.go │ │ └── go.mod │ ├── complaint │ │ ├── details.go │ │ └── go.mod │ └── task │ ├── details.go │ └── go.mod ├── go.mod └── services ├── billing │ ├── go.