simplify server start method

This commit is contained in:
Nikolay Kim 2017-12-19 09:08:36 -08:00
parent 4f6145e5c7
commit 13cbfc877d
9 changed files with 20 additions and 17 deletions

View file

@ -214,7 +214,7 @@ fn main() {
|r| r.h(fs::StaticFiles::new("tail", "static/", true)))
})
.bind("127.0.0.1:8080").unwrap()
.start().unwrap();
.start();
let _ = sys.run();
}