hledger/hledger-web/Settings/Development.hs

15 lines
178 B
Haskell
Raw Normal View History

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