Set of instruments to simplify http server set-up.
This project is in progress and might change a lot from version to version.
```rust use fregate::{ axum::{routing::get, Router}, bootstrap, tokio, AppConfig, Application, };
async fn handler() -> &'static str { "Hello, World!" }
async fn main() { let config: AppConfig = bootstrap([]).unwrap();
Application::new(&config)
.router(Router::new().route("/", get(handler)))
.serve()
.await
.unwrap();
} ```
here
.