]> gitweb.michael.orlitzky.com - hath.git/blobdiff - src/ExitCodes.hs
Rewrite command-line parsing to use cmdargs.
[hath.git] / src / ExitCodes.hs
index 4257191b56eeace1e82d0bb788000eb9099b0501..62a561d3264114a59e68be9bfd1db81ed18658c8 100644 (file)
@@ -1,11 +1,8 @@
 -- | Some exit codes, used in the ExitFailure constructor.
-module ExitCodes
+module ExitCodes (
+  exit_invalid_cidr )
 where
 
 -- | One of the CIDRs is invalid (malformed, not a CIDR at all, etc).
 exit_invalid_cidr :: Int
 exit_invalid_cidr = 1
-
--- | We were unable to parse the command-line arguments.
-exit_args_parse_failed :: Int
-exit_args_parse_failed = 2