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 Apr 14, 2026. It is now read-only.
When trying to compile generated code I've got compilation errors:
api/openapi/types.gen.go:6082:32: cannot use false (untyped bool constant) as ParamLocation value in argument to BindFormParam
api/openapi/types.gen.go:6082:39: cannot use r.URL.Query() (value of map type url.Values) as string value in argument to BindFormParam
That's because the types of passed variables does not match the types of BindFormParam parameters:
My config is:
Example of
BindFormParamcalls that's generated in wrappers:When trying to compile generated code I've got compilation errors:
That's because the types of passed variables does not match the types of
BindFormParamparameters: