m3u8-rs/src/lib.rs

9 lines
156 B
Rust
Raw Normal View History

2021-04-18 17:03:13 +00:00
#[path = "playlist.rs"]
2016-06-03 18:56:45 +00:00
pub mod playlist;
2021-04-18 17:03:13 +00:00
#[path = "parser.rs"]
#[cfg(feature = "parser")]
mod parser;
2016-06-03 18:56:45 +00:00
2021-04-18 17:03:13 +00:00
#[cfg(feature = "parser")]
pub use self::parser::*;