]> gitweb.michael.orlitzky.com - dead/htsn-import.git/blob - src/ExitCodes.hs
Allow "TBA" laps in TSN.XML.AutoRacingSchedule.
[dead/htsn-import.git] / src / ExitCodes.hs
1 -- | All exit codes that the program can return (excepting
2 -- ExitSuccess).
3 --
4 module ExitCodes (
5 exit_no_xml_files )
6 where
7
8 -- | No XML files were given on the command line.
9 exit_no_xml_files :: Int
10 exit_no_xml_files = 1
11