packages feed

yesod-1.0.1.3: scaffold/Settings/Development.hs.cg

module Settings.Development where

import Prelude

development :: Bool
development =
#if DEVELOPMENT
  True
#else
  False
#endif

production :: Bool
production = not development