JSON body parser for the Gotham web framework.
This is a simple integration of serde_json
crate to eliminate the boilerplate code of parsing a request body. If parsing fails, a HTTP 422 (Unprocessable entity) is returned. This crate also provides a convenience function to create JSON responses.
```rust use gothamserdejsonbodyparser::{createjsonresponse, JSONBody};
struct Person { name: String, }
pub fn jsonecho(state: State) -> Box