diff options
Diffstat (limited to 'fig-web/main/Main.hs')
| -rw-r--r-- | fig-web/main/Main.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fig-web/main/Main.hs b/fig-web/main/Main.hs index 89ac345..909127e 100644 --- a/fig-web/main/Main.hs +++ b/fig-web/main/Main.hs @@ -25,7 +25,7 @@ data Command | Secure SecureOptions parseCommand :: Parser Command -parseCommand = subparser $ mconcat +parseCommand = hsubparser $ mconcat [ command "public" $ info (Public <$> parsePublicOptions) (progDesc "Launch the public web server") , command "secure" $ info (Secure <$> parseSecureOptions) (progDesc "Launch the private web server (intended to be run behind authentication proxy)") ] @@ -49,7 +49,7 @@ main :: IO () main = do opts <- execParser $ info (parseOpts <**> helper) ( fullDesc - <> Options.Applicative.header "fig-web - public-facing web applications" + <> Options.Applicative.header "fig-web - web backends" ) cfg <- loadConfig opts.config case opts.cmd of |
