diff options
Diffstat (limited to 'Data/ConfigManager/Expr.hs')
-rw-r--r-- | Data/ConfigManager/Expr.hs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Data/ConfigManager/Expr.hs b/Data/ConfigManager/Expr.hs new file mode 100644 index 0000000..3aa8825 --- /dev/null +++ b/Data/ConfigManager/Expr.hs @@ -0,0 +1,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 |