chore: remove unused imports

This commit is contained in:
hexlocation 2025-07-29 20:39:23 +02:00
parent 17c802bab8
commit 5dda533338

View file

@ -1,10 +1,10 @@
use std::{net::IpAddr, pin::Pin, sync::Arc}; use std::{net::IpAddr, pin::Pin, sync::Arc};
use base64::{Engine, prelude::BASE64_STANDARD}; use base64::{Engine, prelude::BASE64_STANDARD};
use http_body_util::{BodyExt, Full}; use http_body_util::BodyExt;
use hyper::{ use hyper::{
Method, Request, Response, StatusCode, Method, Request, StatusCode,
body::{Bytes, Incoming}, body::Incoming,
service::Service, service::Service,
}; };
use log::{debug, error, warn}; use log::{debug, error, warn};
@ -13,7 +13,7 @@ use tokio::{net::TcpStream, sync::Mutex};
use crate::{ use crate::{
config::{Client, Config}, config::{Client, Config},
db::{BoxyDatabase, Endpoint}, db::{BoxyDatabase, Endpoint},
server::{custom_resp, default_response, GeneralBody, GeneralResponse, TcpIntercept}, server::{custom_resp, default_response, GeneralResponse, TcpIntercept},
}; };
#[derive(Debug, Clone)] #[derive(Debug, Clone)]