summaryrefslogtreecommitdiff
path: root/src/Propellor.hs
diff options
context:
space:
mode:
authorJoey Hess2015-10-10 14:56:22 -0400
committerJoey Hess2015-10-10 15:05:05 -0400
commitae380f085bc867f7405ef0a16c849864c6552e47 (patch)
tree22bd030a05f85bfeff90eaa48a87915edf9cdf27 /src/Propellor.hs
parent28fe270223ed56ef8e7fd867573b5ba6a5a221c7 (diff)
tighten focus of Propellor module, adding Propellor.Base for all the exports
Diffstat (limited to 'src/Propellor.hs')
-rw-r--r--src/Propellor.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Propellor.hs b/src/Propellor.hs
index 46f56abe..4f777f11 100644
--- a/src/Propellor.hs
+++ b/src/Propellor.hs
@@ -37,6 +37,7 @@ module Propellor (
, host
, (&)
, (!)
+ , describe
-- * Combining properties
-- | Properties are often combined together in your propellor
-- configuration. For example:
@@ -47,6 +48,8 @@ module Propellor (
, before
, onChange
-- * Included modules
+ -- | These are only the core modules you'll need. There are many
+ -- more in propellor that you can import.
, module Propellor.Types
-- | Additional data types used by propellor
, module Propellor.Property
@@ -60,7 +63,6 @@ module Propellor (
-- | Combining a list of properties into a single property
, module Propellor.Types.PrivData
-- | Private data access for properties
- , module Propellor.PropAccum
, module X
) where