A simple http server library.
```rust no_run
use fire::get;
struct GlobalName(String);
// handle a simple get request
fn root(globalname: &GlobalName) -> String { format!("Hi, this is {}", globalname.0) }
async fn main() { let mut server = fire::build("0.0.0.0:3000").await .expect("Failed to parse address");
server.add_data(GlobalName("fire".into()));
server.add_route(root);
server.ignite().await.unwrap();
} ```
For more examples look in the examples directory and the test directory.