chore: Run `cargo fmt`

This commit is contained in:
Bryant Biggs 2024-08-02 21:20:30 -05:00 committed by Maksym Pavlenko
parent 2265428508
commit fb4cb85d66
1 changed files with 5 additions and 5 deletions

View File

@ -103,11 +103,11 @@ pub async fn connect(
#[cfg(windows)]
{
let client = tokio::net::windows::named_pipe::ClientOptions::new()
.open(&path)
.map_err(|e| std::io::Error::from(e))?;
Ok::<_, std::io::Error>(hyper_util::rt::TokioIo::new(client))
let client = tokio::net::windows::named_pipe::ClientOptions::new()
.open(&path)
.map_err(|e| std::io::Error::from(e))?;
Ok::<_, std::io::Error>(hyper_util::rt::TokioIo::new(client))
}
}
}))