yesod/yesod/scaffold/Settings/Development.hs.cg
2012-04-09 11:09:42 -04:00

15 lines
178 B
Plaintext

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