Skip to content

Commit 3d2998e

Browse files
committed
minor formatting
1 parent 72ea56a commit 3d2998e

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

System/Config.hs

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,21 @@ data MainConfig = DeleteApi { deleteApiEndpoint :: Text}
1313
deriving (Eq,Show,Read)
1414

1515
mainConfig :: Parser MainConfig
16-
mainConfig = subparser
17-
( command "api" (info apiConfig
18-
(progDesc "Manipulate AWS API Gateway Endpoints and their relations with Lambda functions"))
19-
<> command "lambda" (info lambdaConfig
20-
(progDesc "Manipulate AWS Lambda functions"))
16+
mainConfig = subparser (
17+
command "api" (info apiConfig
18+
(progDesc "Manipulate AWS API Gateway Endpoints and their relations with Lambda functions"))
19+
<> command "lambda" (info lambdaConfig
20+
(progDesc "Manipulate AWS Lambda functions"))
2121
)
2222

2323
apiConfig :: Parser MainConfig
2424
apiConfig = subparser (
2525
command "create" (info createApiConfig
26-
(progDesc "Create an AWS API Gateway endpoint and ties it to AWS Lambda function"))
26+
(progDesc "Create an AWS API Gateway endpoint and ties it to AWS Lambda function"))
2727
<> command "delete" (info deleteApiConfig
2828
(progDesc "Delete an API Gateway endpoint"))
2929
)
3030

31-
3231
createApiConfig :: Parser MainConfig
3332
createApiConfig = CreateApi
3433
<$> (pack <$> strOption ( long "endpoint"

0 commit comments

Comments
 (0)