Format Rust code using rustfmt

This commit is contained in:
github-actions[bot] 2023-12-25 22:36:12 +00:00 committed by GitHub
parent d536cd116f
commit c93e6aa569
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1015,8 +1015,10 @@ async fn handle_app_message(
} else { } else {
warp::ws::Message::pong(payload.bytes) warp::ws::Message::pong(payload.bytes)
} }
}, }
WsMessageType::Close => { unreachable!(); } WsMessageType::Close => {
unreachable!();
}
}; };
// Send to the websocket if registered // Send to the websocket if registered
if let Some(got) = ws_senders.get(&channel_id) { if let Some(got) = ws_senders.get(&channel_id) {