better handler result handling

This commit is contained in:
Nikolay Kim 2017-11-28 12:42:53 -08:00
parent 0bd8725426
commit b55d69b4c2
4 changed files with 9 additions and 15 deletions

View file

@ -78,10 +78,10 @@ fn main() {
.resource("/", |r| r.handler(Method::GET, |req| {
println!("{:?}", req);
Ok(httpcodes::HTTPFound
.build()
.header("LOCATION", "/index.html")
.body(Body::Empty)?)
httpcodes::HTTPFound
.build()
.header("LOCATION", "/index.html")
.body(Body::Empty)
}))
// static files
.route_handler("/static", StaticFiles::new("examples/static/", true)))