From: Michael Orlitzky Date: Sun, 28 Jul 2013 02:51:12 +0000 (-0400) Subject: Import explicitly from CmdArgs. X-Git-Tag: 0.2.0~20 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=haeredes.git;a=commitdiff_plain;h=75977adcec5c187204b95f3870544040c52398fd;ds=sidebyside Import explicitly from CmdArgs. --- diff --git a/src/CommandLine.hs b/src/CommandLine.hs index 39470b2..42fcd61 100644 --- a/src/CommandLine.hs +++ b/src/CommandLine.hs @@ -6,7 +6,25 @@ module CommandLine ( ) where -import System.Console.CmdArgs +import System.Console.CmdArgs ( + Data, + Typeable, + (&=), + args, + auto, + cmdArgs, + def, + details, + explicit, + groupname, + help, + helpArg, + modes, + name, + program, + summary, + typ, + versionArg ) -- Get the version from Cabal. import Paths_haeredes (version) @@ -55,13 +73,13 @@ arg_spec = ns :: Args ns = NS { server = def - &= groupname "Common flags" - &= typ "IP" - &= help server_help, + &= groupname "Common flags" + &= typ "IP" + &= help server_help, delegates = def - &= args - &= typ "DELEGATES" } + &= args + &= typ "DELEGATES" } &= details [ns_description]