blob: 73613f0b5c46d4df47433463212062571b820900 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
module Settings.Development where
import Prelude
development :: Bool
development =
#if DEVELOPMENT
True
#else
False
#endif
production :: Bool
production = not development
|