Removing unreachable Ok(())

This commit is contained in:
Dave Hrycyszyn
2024-05-29 12:52:10 +01:00
parent 8cd9d1ad7d
commit 6114a0d645

View File

@@ -11,5 +11,4 @@ async fn main() -> Result<(), WebSocketError> {
let msg = ws.receive().await?; let msg = ws.receive().await?;
println!("Received: {:?}", msg); println!("Received: {:?}", msg);
} }
Ok(())
} }