aboutsummaryrefslogtreecommitdiff
path: root/Data/ConfigManager/Types.hs
diff options
context:
space:
mode:
authorJoris2016-03-13 21:26:03 +0100
committerJoris2016-03-13 21:26:03 +0100
commit47623ec732ec19c765c0a1ebffd9b234f81e0d01 (patch)
treea52969d730e64d1303e62efa8c36b03a7be7f1a5 /Data/ConfigManager/Types.hs
Initial commit
Diffstat (limited to 'Data/ConfigManager/Types.hs')
-rw-r--r--Data/ConfigManager/Types.hs13
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