go-sqs-poller
go-sqs-poller copied to clipboard
go get github.com/h2ik/go-sqs-poller/v3/worker cannot find package
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"
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.