configurator-0.3.0.0: Data/Configurator/Types.hs
-- |
-- Module: Data.Configurator.Types
-- Copyright: (c) 2011 MailRank, Inc.
-- License: BSD3
-- Maintainer: Bryan O'Sullivan <bos@serpentine.com>
-- Stability: experimental
-- Portability: portable
--
-- Types for working with configuration files.
module Data.Configurator.Types
(
AutoConfig(..)
, Config
, Name
, Value(..)
, Configured, convert
, Worth(..)
-- * Exceptions
, ConfigError(..)
, KeyError(..)
-- * Notification of configuration changes
, Pattern
, ChangeHandler
) where
import Data.Configurator.Types.Internal