aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
blob: d8bb0d55dccfc482755838ff96c07b0b9eb33939 (plain)
1
2
3
4
5
use pdf_urls::get_urls_from_pdf;

fn main() {
    get_urls_from_pdf("example.pdf").unwrap();
}