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
uuid.NewV4() does not return two assignments, which is throwing an error upon build.
uuid.NewV4()
id, _ := uuid.NewV4()
Should be changed to:
id := uuid.NewV4()
https://github.com/kataras/iris/blob/master/_examples/tutorial/url-shortener/factory.go#L14
The text was updated successfully, but these errors were encountered:
kataras#1303 Fixed. Could not build the url-shortener code. Error was…
cbb30f1
… being thrown pertaining to uuid.NewV4() second assignment value . The uuid.NewV4() only has one value assignment. Removed the _
PR: #1304
Sorry, something went wrong.
Already fixed on the v11.2.0 PR but thanks! File: https://github.com/kataras/iris/blob/v11.2.0/_examples/tutorial/url-shortener/factory.go#L14
No branches or pull requests
uuid.NewV4()
does not return two assignments, which is throwing an error upon build.id, _ := uuid.NewV4()
Should be changed to:
id := uuid.NewV4()
https://github.com/kataras/iris/blob/master/_examples/tutorial/url-shortener/factory.go#L14
The text was updated successfully, but these errors were encountered: