eidolon/Settings/Development.hs
2014-08-09 20:33:22 +02:00

15 lines
178 B
Haskell

module Settings.Development where
import Prelude
development :: Bool
development =
#if DEVELOPMENT
True
#else
False
#endif
production :: Bool
production = not development