Format Rust code using rustfmt

This commit is contained in:
github-actions[bot] 2023-11-30 15:00:33 +00:00 committed by GitHub
parent bf3190615c
commit 423e701572
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -143,7 +143,15 @@ async fn serve(
send_to_loop: MessageSender,
print_tx: PrintSender| {
ws_connection.on_upgrade(move |ws: WebSocket| async move {
maintain_websocket(ws, our, jwt_secret_bytes, ws_senders, send_to_loop, print_tx).await
maintain_websocket(
ws,
our,
jwt_secret_bytes,
ws_senders,
send_to_loop,
print_tx,
)
.await
})
},
);