From 455443df3ffafa6250bffc75929ae83984f60f5d Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Fri, 8 Mar 2019 16:41:03 -0500 Subject: [PATCH] src/ExitCodes.hs: add explicit export list. --- src/ExitCodes.hs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ExitCodes.hs b/src/ExitCodes.hs index 08acfdb..15a1160 100644 --- a/src/ExitCodes.hs +++ b/src/ExitCodes.hs @@ -1,7 +1,9 @@ -- | All exit codes that the program can return (excepting -- ExitSuccess). There's only one, since the program will try and -- fail forever upon errors. -module ExitCodes +module ExitCodes ( + exit_args_parse_failed, + exit_input_file_doesnt_exist ) where -- | Indicates that the command-line arguments could not be parsed. -- 2.43.2