style: run rustfmt

This commit is contained in:
Compositr 2024-11-03 21:34:07 +11:00
parent 244463ee29
commit d554e688e2
4 changed files with 13 additions and 11 deletions

View file

@ -6,7 +6,9 @@ use crate::{
threads::ThreadPool, threads::ThreadPool,
}; };
use std::{ use std::{
collections::HashMap, net::{Shutdown, TcpListener}, sync::Arc collections::HashMap,
net::{Shutdown, TcpListener},
sync::Arc,
}; };
type DynHandlerFn = dyn Fn(Request) -> Response + Send + Sync; type DynHandlerFn = dyn Fn(Request) -> Response + Send + Sync;

View file

@ -1,2 +1,2 @@
pub mod responses;
pub mod requests; pub mod requests;
pub mod responses;