Fix build break for windows (oops)

Really need to have better cross-building infrastructure for my own
personal garbage.
This commit is contained in:
John Doty 2024-08-04 08:11:00 -07:00
parent 6335944591
commit 75343dbea2

View file

@ -20,7 +20,7 @@ pub async fn send_reverse_message(_message: Message) -> Result<()> {
#[cfg(not(target_family = "unix"))]
pub async fn handle_reverse_connections(
_messages: mpsc::Sender<Message>,
_messages: tokio::sync::mpsc::Sender<Message>,
) -> Result<()> {
std::future::pending().await
}