CI crates.io docs.rs

A simple http server library.

Example

```rust no_run

use fire_http as fire;

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) } }

[tokio::main]

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.

Features