Skip to content

Commit edcadc6

Browse files
pass cargo fmt
1 parent 0e4e4cb commit edcadc6

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

actix-api/src/webtransport/mod.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,11 @@ use web_transport_quinn::Session;
2121
/// This module contains the implementation of the Videocall WebTransport API.
2222
/// It is responsible for accepting incoming WebTransport connections and handling them.
2323
/// It also contains the logic for handling the WebTransport handshake and the WebTransport session.
24-
///
25-
///
26-
24+
///
25+
///
2726
2827
pub const WEB_TRANSPORT_ALPN: &[&[u8]] = &[b"h3", b"h3-32", b"h3-31", b"h3-30", b"h3-29"];
2928

30-
3129
pub const QUIC_ALPN: &[u8] = b"hq-29";
3230

3331
const MAX_UNIDIRECTIONAL_STREAM_SIZE: usize = 500_000;

yew-ui/src/main.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,8 @@ use crate::constants::ENABLE_OAUTH;
2323
///
2424
/// This module contains the main entry point for the Videocall UI.
2525
/// It is responsible for rendering the main application and handling routing.
26-
///
27-
///
28-
26+
///
27+
///
2928
3029
#[derive(Clone, Routable, PartialEq, Debug, EnumDisplay)]
3130
enum Route {

0 commit comments

Comments
 (0)