summaryrefslogtreecommitdiff
path: root/src/cmds/arg
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-03-14 18:32:47 +0800
committer魏曹先生 <1992414357@qq.com>2026-03-14 18:32:47 +0800
commit707a1f7c747a08e2ce77df88edc1e72eae9cbebc (patch)
tree53a64b10b788b57219ff2387322e50698d32198a /src/cmds/arg
parent521b7a7b08eebd30db215d84b55626fe8bf7533a (diff)
Add workspace commands and supporting types
Diffstat (limited to 'src/cmds/arg')
-rw-r--r--src/cmds/arg/path.rs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/cmds/arg/path.rs b/src/cmds/arg/path.rs
new file mode 100644
index 0000000..14ec34c
--- /dev/null
+++ b/src/cmds/arg/path.rs
@@ -0,0 +1,8 @@
+use std::path::PathBuf;
+
+use clap::Parser;
+
+#[derive(Parser, Debug)]
+pub struct JVPathArgument {
+ pub path: PathBuf,
+}