We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Line 719 in sqlx-runner/exec.go won't compile as the NewV4 method returns a string and an error so causes a multi value returned error:
https://github.com/satori/go.uuid/blob/master/generator.go
func NewV4() (UUID, error) { return global.NewV4() }
The text was updated successfully, but these errors were encountered:
Workaround used by many people is to set the go.uuid version like this in Gopkg.toml
[[constraint]] name = "github.com/satori/go.uuid" version = "v1.1.0"
Sorry, something went wrong.
No branches or pull requests
Line 719 in sqlx-runner/exec.go won't compile as the NewV4 method returns a string and an error so causes a multi value returned error:
https://github.com/satori/go.uuid/blob/master/generator.go
func NewV4() (UUID, error) {
return global.NewV4()
}
The text was updated successfully, but these errors were encountered: