SConfig-0.1.0.1: A simple config library
Data.SConfig
Synopsis
parseConfig :: String -> Config Source
Parse configuration
getValue :: Key -> Map Key Value -> Maybe Value Source
Lookup values in a parsed configuration (alias of Map.lookup)
type Config = Map Key Value Source
Parsed configuration. Basically a Map String String
type Key = String Source
Config key, alias for String.
type Value = String Source
Config value, alias for String.