Removed mut from runtime

This commit is contained in:
int 80h
2021-11-14 20:46:24 -05:00
parent fc1f2cbf33
commit f91113d96f
2 changed files with 1 additions and 2 deletions

View File

@@ -442,7 +442,7 @@ fn main() -> io::Result<()> {
.next()
.ok_or_else(|| io::Error::from(io::ErrorKind::AddrNotAvailable))?;
let mut runtime = runtime::Builder::new_multi_thread()
let runtime = runtime::Builder::new_multi_thread()
// .threaded_scheduler()
.enable_io()
.enable_time()