m3u8-rs/src/lib.rs
Sebastian Dröge 51fcb70113 Re-export all types from the crate root and remove the playlist sub-module
There's not much else in this crate and having it behind another module
decreases visibility.
2021-11-18 15:00:01 +02:00

9 lines
128 B
Rust

mod playlist;
pub use playlist::*;
#[cfg(feature = "parser")]
mod parser;
#[cfg(feature = "parser")]
pub use self::parser::*;