A simple http server library.
```rust no_run
use fire::{data_struct, get};
// To access data from request handlers datastruct! { #[derive(Debug)] struct Data { globalname: String } }
// handle a simple get request get! { Root, "/", |r, globalname| -> String { format!("Hi, this is {}", global_name) } }
async fn main() { let data = Data { global_name: "fire".into() };
let mut server = fire::build("0.0.0.0:3000", data)
.expect("Failed to parse address");
server.add_route(Root);
server.light().await
.expect("server paniced");
} ```
For more examples look in the examples directory and the test directory.