rpip / paystack-go

Go library for the Paystack API https://developers.paystack.co/v1.0/reference
MIT License
62 stars 39 forks source link

conflicting module name. #11

Closed haibeey closed 2 years ago

haibeey commented 3 years ago

When i run go get "github.com/rpip/paystack-go" i get the following error.

go: github.com/rpip/paystack-go upgrade => v0.0.0-20210424223323-2b8a91696244 go get: github.com/rpip/paystack-go@v0.0.0-20210424223323-2b8a91696244: parsing go.mod: module declares its path as: github.com/Obayanju/paystack-go but was required as: github.com/rpip/paystack-go

elvis-chuks commented 3 years ago

the go.mod file has a conflicting module name

metaclips commented 2 years ago

An alternative fix is to place this at the bottom of your go.mod

replace github.com/Obayanju/paystack-go => github.com/rpip/paystack-go v0.0.0-20210424223323-2b8a91696244
Obayanju commented 2 years ago

This has been fixed in this PR https://github.com/rpip/paystack-go/pull/12