lerouxrgd / datachannel-rs

Rust wrappers for libdatachannel
Mozilla Public License 2.0
135 stars 26 forks source link

Export Error and Result from crate::error. #33

Closed bigfarts closed 2 years ago

bigfarts commented 2 years ago

There is currently no way to get the error.

lerouxrgd commented 2 years ago

Oh good point.

Actually instead of pub mod error; I'd prefer having:

pub use crate::error::{Error, Result};

in lib.rs

bigfarts commented 2 years ago

Done!

lerouxrgd commented 2 years ago

Thanks !