Re: [go-nuts] more simple modules usage questions

2020-08-19 Thread Kurtis Rader
On Wed, Aug 19, 2020 at 12:12 PM 'K Richard Pixley' via golang-nuts < golang-nuts@googlegroups.com> wrote: > I have two local git repositories. Both are go modules. Call them, > foo.com/one and foo.com/two. Both have go.mod files declaring themselves > to be, respectively, foo.com/one and foo.c

[go-nuts] more simple modules usage questions

2020-08-19 Thread 'K Richard Pixley' via golang-nuts
I have two local git repositories.  Both are go modules.  Call them, foo.com/one and foo.com/two.  Both have go.mod files declaring themselves to be, respectively, foo.com/one and foo.com/two based on go 1.15. I want to use a package from one in the other. import "foo.com/one/pkg/thing1"