touche 0.0.15

Synchronous HTTP library
Documentation
use std::env;

use touche::{Response, Server, StatusCode};

fn main() -> std::io::Result<()> {
    let threads = match env::var("THREADS") {
        Ok(threads) => threads.parse::<usize>().expect("Invalid THREADS value"),
        Err(_) => 100,
    };

    Server::builder()
        .max_threads(threads)
        .bind("0.0.0.0:4444")
        .serve(|_req| {
            Response::builder()
                .status(StatusCode::OK)
                .body("Hello, world!")
        })
}