Skip to content

Commit

Permalink
follow naming conventions from libp2p#2217
Browse files Browse the repository at this point in the history
  • Loading branch information
mriise committed Apr 29, 2023
1 parent 9474bf0 commit 3b0be0a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions transports/websys-webtransport/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ use std::{
task::{Context, Poll},
};

pub struct WebTransportTransport;
pub struct Transport;

#[derive(Default, Debug)]
struct WebTransportAddress {
Expand Down Expand Up @@ -108,12 +108,12 @@ fn certhashes_to_jsvalue(certhashes: Vec<Vec<u8>>) -> Array {
arr
}

impl WebTransportTransport {
impl Transport {

}


impl Transport for WebTransportTransport {
impl Transport for Transport {
type Output = Connection;

type Error = Error;
Expand Down

0 comments on commit 3b0be0a

Please sign in to comment.