Skip to content

Commit

Permalink
. makes only webc::Error public (relates to: #12, #14)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremychone committed Aug 17, 2024
1 parent 9589ab2 commit fab7da5
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/webc/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ mod web_client;
// for when not `text/event-stream`
mod web_stream;

pub use error::{Error, Result};
pub use web_client::*;
pub use web_stream::*;
pub(crate) use error::Result;
pub(crate) use web_client::*;
pub(crate) use web_stream::*;

// only public for external use
pub use error::Error;

// endregion: --- Modules

0 comments on commit fab7da5

Please sign in to comment.