From 8b75074f8be2ada7ed7ee03e563172652b2556cc Mon Sep 17 00:00:00 2001 From: Nick Date: Fri, 28 Nov 2025 02:47:35 -0600 Subject: [PATCH] chore: made options explicit --- packages/zookeeper/src/Main.hs | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/packages/zookeeper/src/Main.hs b/packages/zookeeper/src/Main.hs index 607b6d2..701a334 100755 --- a/packages/zookeeper/src/Main.hs +++ b/packages/zookeeper/src/Main.hs @@ -42,11 +42,12 @@ baboonCommand = Just $ OptionsValues [ OptionValueUser - "target" - Nothing - "Send a baboon to the safari" - Nothing - True + { optionValueName = "target", + optionValueLocalizedName = Nothing, + optionValueDescription = "Send a baboon to the safari", + optionValueLocalizedDescription = Nothing, + optionValueRequired = True + } ], createDefaultMemberPermissions = Nothing, createDMPermission = Nothing @@ -63,11 +64,12 @@ unbaboonCommand = Just $ OptionsValues [ OptionValueUser - "target" - Nothing - "The baboon to rewild" - Nothing - True + { optionValueName = "target", + optionValueLocalizedName = Nothing, + optionValueDescription = "The baboon to rewild", + optionValueLocalizedDescription = Nothing, + optionValueRequired = True + } ], createDefaultMemberPermissions = Nothing, createDMPermission = Nothing