Skip to content

Commit

Permalink
optimize imports
Browse files Browse the repository at this point in the history
  • Loading branch information
hhakanisler committed Mar 21, 2024
1 parent 3c68f35 commit 537d719
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/metrics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,16 +53,16 @@ use std::net::SocketAddr;

use bytes::Bytes;
use http_body_util::{BodyExt, Full};
use hyper::{header, Method, Request, Response, StatusCode};
use hyper::body::Incoming;
use hyper::server::conn::http1;
use hyper::service::service_fn;
use hyper::{header, Method, Request, Response, StatusCode};
pub use hyper_util::rt::TokioIo;
pub use lazy_static::lazy_static;
use log::error;
pub use prometheus::register_int_counter;
pub use prometheus::Encoder;
pub use prometheus::IntCounter;
pub use prometheus::register_int_counter;
use tokio::net::TcpListener;
use tokio::task::JoinHandle;

Expand Down

0 comments on commit 537d719

Please sign in to comment.