From 69bbd4ed3804833b15285cf8637e96e59135f223 Mon Sep 17 00:00:00 2001 From: Julian T Date: Tue, 20 Jul 2021 22:30:45 +0200 Subject: Switch from python to rust Rust implementation can parse flags, load config and iterate image files --- src/main.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/main.rs (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..06346a2 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,14 @@ +mod context; +use context::Context; + +fn main() { + println!("Hello, world!"); + + let ctx = Context::new_with_args().unwrap(); + + println!("{:?}", ctx); + + for file in ctx.get_image_files().unwrap() { + println!("{}", file.display()); + } +} -- cgit v1.2.3