aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 3964551..789e383 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,5 +1,8 @@
+use std::path::Path;
+
use pdf_urls::get_urls_from_pdf;
fn main() {
- get_urls_from_pdf();
+ let path = Path::new("example.pdf");
+ get_urls_from_pdf(&path);
}