A library for building Iron handlers that implements HTTP header handling and content negotiation.
A port of Clojure's Liberator library, itself inspired by Erlang's webmachine.
Add austenite = "*"
to your Cargo.toml
dependencies.
```rust struct GetOkContent; resource_handler!(GetOkContent);
impl Resource for GetOkContent {
fn handleok(&self, req: &Request, resp: &mut Response)
-> IronResult
… Iron::new(Resource).listen((address,0u16)); … ```
TBD