style: remove unused use

This commit is contained in:
Compositr 2024-11-03 16:52:25 +11:00
parent 2b934876e0
commit 76657fce4a

View file

@ -6,7 +6,7 @@ use crate::{
threads::ThreadPool, threads::ThreadPool,
}; };
use std::{ 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; type DynHandlerFn = dyn Fn(Request) -> Response + Send + Sync;