A (nightly) insecure lightweight synchronous Actix-like HTTP server.
WARNING: Do not allow access to this server from the open internet, it has little to no security measures.
```rust use enrgy::{get, App, HttpServer, Param, Responder};
fn index() -> impl Responder { "Hello World!" }
fn greet(name: Param<"name">) -> impl Responder { format!("Hello {}!", &name) }
fn main() -> Result<(), Box
Ok(())
} ```
Q: Why the name 'enrgy'?
A: I was trying to come up with a name and miss-spelled energy.