You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hey sorry, I've not touched this project in a little while and my go is a little Rusty. feel free to submit a PR or i can take a look later.
jakenvac
changed the title
Module path should be "github.com/JakeHL/Goid", not "github.com/jakehl/goid"
module paths should all be lower case
Apr 8, 2022
Background
Module path is inconsistent with go import path.
GO111MODULE=on, as doc said, import "github.com/JakeHL/Goid", then get this error:
Solution
Fix the module path:
import "github.com/jakehl/goid"
.The text was updated successfully, but these errors were encountered: