Re: [go-nuts] Re: vender folder problem

2016-10-02 Thread topiyadharesh
my main.go is in https://github.com/dharesh007/challenge2016/tree/master/cmd/locationService folder and vender dir is in it. where should I put vendor dir. On Sunday, 2 October 2016 14:47:53 UTC+5:30, Axel Wagner wrote: > > That repository contains no vendor/ folder. > > On Sun, Oct 2, 2016 at 9

Re: [go-nuts] Re: vender folder problem

2016-10-02 Thread 'Axel Wagner' via golang-nuts
That repository contains no vendor/ folder. On Sun, Oct 2, 2016 at 9:49 AM, wrote: > I am using vendor version only > > On Sunday, 2 October 2016 12:40:28 UTC+5:30, Axel Wagner wrote: >> >> You seemingly use both a vendored version of go-kit and a non-vendored >> version (likely you are importin

Re: [go-nuts] Re: vender folder problem

2016-10-02 Thread topiyadharesh
I am using vendor version only On Sunday, 2 October 2016 12:40:28 UTC+5:30, Axel Wagner wrote: > > You seemingly use both a vendored version of go-kit and a non-vendored > version (likely you are importing something from outside of vendor/ which > imports go-kit itself) and are trying to use a C

Re: [go-nuts] Re: vender folder problem

2016-10-02 Thread 'Axel Wagner' via golang-nuts
You seemingly use both a vendored version of go-kit and a non-vendored version (likely you are importing something from outside of vendor/ which imports go-kit itself) and are trying to use a Counter from the vendored version in the unvendored version. As the two are different packages, the Counter