use podal::prelude::*; fn main() -> Result<()> { println!("Podal"); let subscriptions = "subscriptions.txt"; let history = "downloaded.txt"; let site = "https://www.youtube.com/"; podal::run( subscriptions, history, site, podal::feed::find, podal::feed::get, podal::history::find, podal::history::add, podal::fetch::download, )?; println!("Done"); Ok(()) }