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, 1 insertions, 4 deletions
diff --git a/src/main.rs b/src/main.rs
index 789e383..14eab24 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,8 +1,5 @@
-use std::path::Path;
-
use pdf_urls::get_urls_from_pdf;
fn main() {
- let path = Path::new("example.pdf");
- get_urls_from_pdf(&path);
+ get_urls_from_pdf("example.pdf");
}