1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
-- |
-- 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
|