Skip to content

Commit

Permalink
Make connectable and connection public
Browse files Browse the repository at this point in the history
  • Loading branch information
mikroskeem committed Aug 26, 2023
1 parent 016d1c6 commit af09b85
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/connector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
#[macro_use]
mod error;

mod connectable;
mod connection;
pub mod connectable;
pub mod connection;
#[cfg(feature = "http")]
pub mod http;
mod message;
Expand All @@ -28,7 +28,7 @@ pub mod usb;
pub use self::connection::Connection;
pub use self::error::*;

pub(crate) use self::{connectable::Connectable, message::Message};
pub use self::{connectable::Connectable, message::Message};
use std::sync::{Arc, Mutex};
use uuid::Uuid;

Expand Down

0 comments on commit af09b85

Please sign in to comment.