unn w rap

This commit is contained in:
Milo Turner 2020-03-07 21:03:04 -05:00
parent 9acf848116
commit 778995ae15
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ enum Error {
}
fn entry() -> Result<(), Error> {
let mut rt = tokio::runtime::Runtime::new()?;
let mut rt = tokio::runtime::Runtime::new().unwrap();
let mut log = Logger::new();
rt.block_on(start(&mut log))
}