Růžička Filip

Results 3 issues of Růžička Filip

In the [documentation](https://go-fuego.dev/docs/guides/controllers#request-body) it says: > Fuego will automatically parse the request body (JSON, XML, YAML, application/x-www-form-urlencoded and multipart/form-data) [according to the Content-Type header](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Type) of the request. Can I see...

In the [documentation](https://go-fuego.dev/docs/guides/controllers#request-body) it says: > Fuego will automatically parse the request body (JSON, XML, YAML, application/x-www-form-urlencoded and multipart/form-data) [according to the Content-Type header](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Type) of the request. But that is...

I've seen that parsing arbitrary types has been implemented just recently. ```sh curl http://localhost:9999/foo \ --form 'name=josh' \ --form '[email protected]' ``` Parses fine into: ```go type Input struct { RawBody...