From 50db19d69403b537fc5e626495aab7d9742489ec Mon Sep 17 00:00:00 2001 From: Christian Ulrich Date: Tue, 28 May 2024 23:47:23 +0200 Subject: [PATCH] fix command description --- app/Main.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Main.hs b/app/Main.hs index bff7b66..e15f190 100644 --- a/app/Main.hs +++ b/app/Main.hs @@ -146,7 +146,7 @@ parseOptions = <> help "the Nextcloud username" ) <*> hsubparser - ( command "list-boards" (info (pure ListBoards) (progDesc "list all stacks")) + ( command "list-boards" (info (pure ListBoards) (progDesc "list all boards")) <> command "list-stacks" (info parseListStacks (progDesc "list all stacks")) <> command "list-cards" (info parseListCards (progDesc "list all cards")) <> command "create-card" (info parseCreateCard (progDesc "create a new card"))