Got It. Vendor folder should be at root of repo. thanks.
On Sunday, 2 October 2016 09:37:06 UTC+5:30, topiya...@gmail.com wrote:
>
> I have two import packages and have it in vendor dir.
>
> kitprometheus "github.com/go-kit/kit/metrics/prometheus"
>
> stdprometheus "github.com/prometheus/client_go
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
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
https://github.com/dharesh007/challenge2016
I think it's related to package alias.
"github.com/go-kit/kit/log"
"github.com/go-kit/kit/metrics"
works fine.
but
kitprometheus "github.com/go-kit/kit/metrics/prometheus"
stdprometheus "github.com/prometheus/client_golang/pr
I have two import packages and have it in vendor dir.
kitprometheus "github.com/go-kit/kit/metrics/prometheus"
stdprometheus "github.com/prometheus/client_golang/prometheus"
error while compile with go1.7:
"github.com/bla/bla/vendor/github.com/go-kit/kit/metrics".Counter does not
implement "g