use hyper::server::Server;
use hyperbole::{reply, App};
#[tokio::main]
async fn main() -> hyper::Result<()> {
let app = App::new().not_found(reply::filesystem("."));
Server::bind(&([127, 0, 0, 1], 8080).into())
.serve(app.into_make_service())
.await
}