Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cheesycod committed Feb 18, 2025
1 parent 09cc70d commit a9674ba
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions crates/cli/src/http_binder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,13 @@ use hyper_util::{
rt::{TokioExecutor, TokioIo},
server,
};
use std::convert::Infallible;
use std::net::SocketAddr;
use std::{convert::Infallible, path::PathBuf};
use tokio::net::{TcpListener, UnixListener};
#[cfg(unix)] // Unix sockets
use std::path::PathBuf;
use tokio::net::TcpListener;
#[cfg(unix)] // Unix sockets
use tokio::net::UnixListener;
use tower::{Service, ServiceExt};

#[allow(dead_code)]
Expand Down

0 comments on commit a9674ba

Please sign in to comment.