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