go-sqs-poller icon indicating copy to clipboard operation
go-sqs-poller copied to clipboard

go get github.com/h2ik/go-sqs-poller/v3/worker cannot find package

Open danielortizglobant opened this issue 4 years ago • 1 comments

Hi when i try to created a new worker, the app fails with this error


go get github.com/h2ik/go-sqs-poller/v3/worker
cannot find package "github.com/h2ik/go-sqs-poller/v3/worker"

danielortizglobant avatar Sep 04 '20 03:09 danielortizglobant

To do think without using go modules you need to do this:

export GO111MODULE=on
go get github.com/h2ik/go-sqs-poller/v3/worker

and it will work.

jwhitcraft avatar Nov 10 '20 18:11 jwhitcraft