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
{{ message }}
This repository was archived by the owner on Dec 23, 2025. It is now read-only.
I would be great, of binder would support to bind a query parameter to an struct.
Example:
type query struct {
a struct {
a string
b string
c string
d string
} `query:"a"`
}
and a[a]=b would map to query.a.a. This would be helpful, if my own application includes structs from 3rd party vendors, where I cant attach additional query metadata.
Hi there!
I would be great, of binder would support to bind a query parameter to an struct.
Example:
and
a[a]=bwould map toquery.a.a. This would be helpful, if my own application includes structs from 3rd party vendors, where I cant attach additionalquerymetadata.