module Data.ConfigManager.Config ( Config(..) ) where import Data.HashMap.Strict import Data.ConfigManager.Types data Config = Config { hashMap :: HashMap Name Value } deriving (Eq, Read, Show)