hledger/hledger-web/Settings/Development.hs
2018-06-24 14:13:03 +02:00

14 lines
183 B
Haskell

{-# LANGUAGE CPP #-}
module Settings.Development where
development :: Bool
development =
#if DEVELOPMENT
True
#else
False
#endif
production :: Bool
production = not development