add unreachable guard to client loop

This commit is contained in:
Dane Johnson 2022-10-12 12:51:16 -05:00
parent 4c0f571317
commit daedfe72d0

View File

@ -29,6 +29,8 @@ async fn main() -> Result<(), IoError> {
);
println!("Connected to {}", addr);
Client::new(ws, global_state).run().await;
unreachable!();
});
}
Ok(())