blob: 3aa882569345f07afa8dd1c863ed1b1a704af4ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
module Data.ConfigManager.Expr
( Expr(..)
, Name
, Value
) where
import Data.Text (Text)
data Expr =
Binding Name Value
| Import FilePath
deriving (Eq, Read, Show)
type Name = Text
type Value = Text
|