aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorA Farzat <a@farzat.xyz>2026-02-07 18:48:37 +0300
committerA Farzat <a@farzat.xyz>2026-02-07 18:48:37 +0300
commit9d3bff94d9dfc332a6bb05efc923135cf22a35d2 (patch)
tree7e8deecd32822d4d8313f37f05dce7d992a0cbc6 /src/main.rs
parent1ab3e634169435d28077fe32ad36b5ddbde50750 (diff)
downloadsafaribooks-rs-9d3bff94d9dfc332a6bb05efc923135cf22a35d2.tar.gz
safaribooks-rs-9d3bff94d9dfc332a6bb05efc923135cf22a35d2.zip
Add CLI parsing
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
new file mode 100644
index 0000000..3b3e84d
--- /dev/null
+++ b/src/main.rs
@@ -0,0 +1,8 @@
+mod cli;
+
+use clap::Parser;
+use cli::Args;
+
+fn main() {
+ let args = Args::parse();
+}