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
Hello guys,
Im trying to implement your code but I have some issues with it.
In the case I have substruct or slice of substruct, the lib is not working.
type Request struct { SeveralSubRequests []*struct { Foo string `json:"foo" conform:"trim"` Bar string `json:"bar" conform:"trim"` } `json:"several_sub_requests"` }
type Request struct { SubRequest *struct { Foo string `json:"foo" conform:"trim"` Bar string `json:"bar" conform:"trim"` } `json:"sub_request"` }
The text was updated successfully, but these errors were encountered:
Little up on the subject ! Thanks
Sorry, something went wrong.
Thank you and sorry for the delay. I'm happy to take PRs to fix this.
No branches or pull requests
Hello guys,
Im trying to implement your code but I have some issues with it.
In the case I have substruct or slice of substruct, the lib is not working.
The text was updated successfully, but these errors were encountered: