aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
blob: 789e3830874c767c82bdd4eabfbc48a848e38de0 (plain)
1
2
3
4
5
6
7
8
use std::path::Path;

use pdf_urls::get_urls_from_pdf;

fn main() {
    let path = Path::new("example.pdf");
    get_urls_from_pdf(&path);
}