hledger/hledger-web/Settings/Development.hs
Simon Michael b0d71e3ccc web: declare a bunch of language pragmas
Makes the code more declarative, and makes building without cabal easier.
2015-04-07 18:35:41 -07:00

16 lines
199 B
Haskell

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