chore: fmt

This commit is contained in:
jon r 2023-03-28 19:05:14 +02:00
parent 38c4a8593a
commit f55ef54d99

View file

@ -7,13 +7,13 @@ fn main() {
.nth(1)
.unwrap_or_else(|| "127.0.0.1:8080".to_string());
let queue_size = env::args()
let queue_size = env::args()
.nth(2)
.unwrap_or_else(|| "10".to_string())
.parse::<usize>()
.unwrap();
let thread_count = env::args()
let thread_count = env::args()
.nth(3)
.unwrap_or_else(|| "4".to_string())
.parse::<u64>()