aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
blob: 9bd5c37a864a7fda07113bfb35be112d65a3c229 (plain)
1
2
3
4
5
6
7
8
use pdf_urls::get_urls_from_pdf;

fn main() {
    match get_urls_from_pdf("example.pdf") {
        Ok(_) => (),
        Err(err) => eprintln!("error: {}", err),
    }
}