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); }