a simple http server written in rust
```rust
async fn main() { println!("Starting HTTP server..."); let mut server: HTTPServer = HTTPServer::new(([127, 0, 0, 1]).into(), 8080); server.insert("/".tostring(), || { return (200, "index.html".tostring()); }); server.start().await; } ```
Also make sure put the .html files in the src/res directory.