summaryrefslogtreecommitdiff
path: root/src/parser.rs
diff options
context:
space:
mode:
authorJustin Wernick <justin@worthe-it.co.za>2023-04-07 11:50:57 +0200
committerJustin Wernick <justin@worthe-it.co.za>2023-04-07 11:50:57 +0200
commit108fef99d19ade71013dc25562e3c3c3e23347ef (patch)
treefd2082991d11fdbfe00c4345c0daec49e070c999 /src/parser.rs
parentd7ac6f915079c2385be902106f97b994f5f65bc5 (diff)
Failing test for setting description
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 88b32bb..5295483 100644
--- a/src/parser.rs
+++ b/src/parser.rs
@@ -22,6 +22,8 @@ pub enum ShackleCommand {
pub struct GitInitArgs {
#[arg(long)]
pub group: Option<String>,
+ #[arg(long)]
+ pub description: Option<String>,
pub repo_name: String,
}