summaryrefslogtreecommitdiff
path: root/src/parser.rs
diff options
context:
space:
mode:
authorJustin Wernick <justin@worthe-it.co.za>2023-04-08 19:41:37 +0200
committerJustin Wernick <justin@worthe-it.co.za>2023-04-08 19:41:37 +0200
commitff5e3b4dd718e622d81e02c50786c2ec3d5437ae (patch)
tree9de8bebab5d9d5875744d51f3176d9301fb68007 /src/parser.rs
parentc21d81998d3cf573a4b0333f81c22494906cb111 (diff)
Fill in test for updating description on existing repo
This also isn't implemented yet. Naughty naughty.
Diffstat (limited to 'src/parser.rs')
-rw-r--r--src/parser.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/parser.rs b/src/parser.rs
index 5295483..fd8ab75 100644
--- a/src/parser.rs
+++ b/src/parser.rs
@@ -13,12 +13,19 @@ pub enum ShackleCommand {
Exit,
/// List all repositories available
List,
+ SetDescription(SetDescriptionArgs),
GitInit(GitInitArgs),
GitUploadPack(GitUploadPackArgs),
GitReceivePack(GitReceivePackArgs),
}
#[derive(Parser, Clone, Debug, PartialEq, Eq)]
+pub struct SetDescriptionArgs {
+ pub directory: PathBuf,
+ pub description: String,
+}
+
+#[derive(Parser, Clone, Debug, PartialEq, Eq)]
pub struct GitInitArgs {
#[arg(long)]
pub group: Option<String>,