-
Notifications
You must be signed in to change notification settings - Fork 166
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
go.mod should use fully qualified module path #113
Comments
Hi @justinfx , I would like to work on this. |
Hi @justinfx, take a look at what I tried, it might be a little off as I only had a 1-liner issue description. Let me know if it is what you wanted. |
Hi @Ahmadkashif. Sorry if my description wasn't clear. I had assumed the issue was pretty straightforward via the common Go module documentation. But I hadn't considered you would have also needed to update all of the import paths as well. So definitely not a one line change. Good thing IDE refactoring usually handles it all in one step, and the compiler checks it as well. |
I'm happy to help @justinfx . Let's get the ball rolling. |
The go.mod file says
module juno
, where it should be updated tomodule github.com/paypal/junodb
to be "go get" compatible and properly document the client on pkg.go.devThe text was updated successfully, but these errors were encountered: