podal/src/main.rs

12 lines
264 B
Rust
Raw Normal View History

2023-07-25 10:33:41 +01:00
fn main() -> podal::Result<()> {
2023-07-23 18:50:59 +01:00
println!("Podal");
let subscriptions = "subscriptions.txt";
let history = "downloaded.txt";
2023-07-24 07:40:20 +01:00
let site = "https://www.youtube.com/";
2023-07-23 18:50:59 +01:00
2023-07-25 10:33:41 +01:00
podal::run(subscriptions, history, site)?;
2023-07-23 18:50:59 +01:00
println!("Done");
Ok(())
}