chuchi 0.1.5

Http async library based on hyper and tokio
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use chuchi::fs::StaticFiles;

const CSS: StaticFiles = StaticFiles::new("/css", "./examples/www/css");

#[tokio::main]
async fn main() {
	let mut server = chuchi::build("0.0.0.0:3000")
		.await
		.expect("Address could not be parsed");

	server.add_route(CSS);

	server.run().await.unwrap();
}