--- /dev/null
+-- |All exit codes that the program can return (excepting ExitSuccess).
+-- There's only one, since the program will try/fail forever upon errors.
+module ExitCodes
+where
+
+-- |Indicates that the command-line arguments could not be parsed.
+exit_args_parse_failed :: Int
+exit_args_parse_failed = 1
import System.IO (hPutStrLn, stderr)
import CommandLine
+import ExitCodes
import Mail
import Twitter.Http
import Twitter.Status
import Twitter.User
-exit_args_parse_failed :: Int
-exit_args_parse_failed = 1
-- The length of all calls to sleep, in seconds.
heartbeat :: Int