diff options
Diffstat (limited to 'Data/ConfigManager/Types.hs')
-rw-r--r-- | Data/ConfigManager/Types.hs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Data/ConfigManager/Types.hs b/Data/ConfigManager/Types.hs new file mode 100644 index 0000000..2f2f00e --- /dev/null +++ b/Data/ConfigManager/Types.hs @@ -0,0 +1,13 @@ +module Data.ConfigManager.Types + ( Binding + , Name + , Value + ) where + +import Data.Text (Text) + +type Binding = (Name, Value) + +type Name = Text + +type Value = Text |