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)?; println!("Done"); Ok(()) }