yt_feed_xml/
lib.rs

1mod channel;
2mod playlist;
3mod user;
4mod video;
5mod xml_feed;
6
7pub use channel::Channel;
8pub use playlist::Playlist;
9pub use user::User;
10pub use video::Video;
11
12#[cfg(test)]
13mod tests {
14    #[test]
15    fn test_setup() {
16        color_eyre::install().expect("color_eyre::install can only be called once");
17    }
18}