mirror of
https://github.com/simonmichael/hledger.git
synced 2024-12-30 22:02:20 +03:00
15 lines
178 B
Haskell
15 lines
178 B
Haskell
|
module Settings.Development where
|
||
|
|
||
|
import Prelude
|
||
|
|
||
|
development :: Bool
|
||
|
development =
|
||
|
#if DEVELOPMENT
|
||
|
True
|
||
|
#else
|
||
|
False
|
||
|
#endif
|
||
|
|
||
|
production :: Bool
|
||
|
production = not development
|