@@ -0,0 +1,13 @@
+use std::ffi::OsString;
+
+use clap::Parser;
+#[derive(Parser, Debug)]
+#[command(version, about, long_about = None)]
+pub struct Args {
+ #[arg(short, long)]
+ pub input_file: OsString,
+ pub output_file: OsString,
+}
@@ -1,3 +1,4 @@
pub mod node;
pub mod hufftree;
pub mod storage;
+pub mod cli;