diff --git a/src/handlers.rs b/src/handlers.rs index d5bd893..ed08e1e 100644 --- a/src/handlers.rs +++ b/src/handlers.rs @@ -6,7 +6,7 @@ use crate::{ threads::ThreadPool, }; use std::{ - collections::HashMap, error::Error, net::{Shutdown, TcpListener}, sync::Arc + collections::HashMap, net::{Shutdown, TcpListener}, sync::Arc }; type DynHandlerFn = dyn Fn(Request) -> Response + Send + Sync;