chore: remove unused imports
This commit is contained in:
parent
17c802bab8
commit
5dda533338
1 changed files with 4 additions and 4 deletions
|
@ -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)]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue