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
In file main.go, line 93 we are calling the following method:
main.go
eng.AddConfig(cfg)
But the parameter needs to be of type *config.Config, so the correct call should be:
*config.Config
eng.AddConfig(&cfg)
demo.go-admin.com/main.go
Line 93 in 631b3c7
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Brief description
In file
main.go
, line 93 we are calling the following method:But the parameter needs to be of type
*config.Config
, so the correct call should be:Link
demo.go-admin.com/main.go
Line 93 in 631b3c7
The text was updated successfully, but these errors were encountered: