summaryrefslogtreecommitdiff
path: root/src/Propellor/PropAccum.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Propellor/PropAccum.hs')
-rw-r--r--src/Propellor/PropAccum.hs5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/Propellor/PropAccum.hs b/src/Propellor/PropAccum.hs
index 856f2e8e..d9fa8ec7 100644
--- a/src/Propellor/PropAccum.hs
+++ b/src/Propellor/PropAccum.hs
@@ -16,6 +16,7 @@ module Propellor.PropAccum
import Propellor.Types
import Propellor.Types.MetaTypes
+import Propellor.Types.Core
import Propellor.Property
import Data.Monoid
@@ -30,10 +31,6 @@ import Prelude
host :: HostName -> Props metatypes -> Host
host hn (Props ps) = Host hn ps (mconcat (map getInfoRecursive ps))
--- | Props is a combination of a list of properties, with their combined
--- metatypes.
-data Props metatypes = Props [ChildProperty]
-
-- | Start accumulating a list of properties.
--
-- Properties can be added to it using `(&)` etc.