chore: Apply clippy suggestions

This commit is contained in:
FabianLars
2025-07-23 12:44:36 +02:00
parent 27ddcd0abe
commit 14381190e7
5 changed files with 6 additions and 6 deletions
@@ -29,7 +29,7 @@ async fn accept_connection(stream: TcpStream) {
let (write, read) = ws_stream.split();
if let Err(e) = read.forward(write).await {
eprintln!("Error: {}", e);
eprintln!("Error: {e}");
}
}