module Data.ConfigManager.Types ( Binding , Name , Value ) where import Data.Text (Text) type Binding = (Name, Value) type Name = Text type Value = Text