summaryrefslogtreecommitdiff
path: root/src/parser.rs
diff options
context:
space:
mode:
authorJustin Wernick <justin@worthe-it.co.za>2023-03-29 15:55:43 +0200
committerJustin Wernick <justin@worthe-it.co.za>2023-03-29 15:55:43 +0200
commit601c08b20bfb806d78fe92d9830960d1a333d5cf (patch)
tree28daf075e057595fbd817bf22eef3640aac8bd49 /src/parser.rs
parentff2a4b09646a8a5949808bfadf31747751831963 (diff)
Initial implementation of --init group
As the todo list indicates, it needs some security refinement.
Diffstat (limited to 'src/parser.rs')
-rw-r--r--src/parser.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/parser.rs b/src/parser.rs
index 55a2be9..700414c 100644
--- a/src/parser.rs
+++ b/src/parser.rs
@@ -18,6 +18,8 @@ pub enum ShackleCommand {
#[derive(Parser, Clone, Debug, PartialEq, Eq)]
pub struct GitInitArgs {
+ #[arg(long)]
+ pub group: Option<String>,
pub repo_name: String,
}