diff options
| author | Joey Hess <joeyh@joeyh.name> | 2015-10-10 14:45:00 -0400 |
|---|---|---|
| committer | Joey Hess <joeyh@joeyh.name> | 2015-10-10 14:45:00 -0400 |
| commit | 28fe270223ed56ef8e7fd867573b5ba6a5a221c7 (patch) | |
| tree | 4eed19a158af0e63c6028f91cb479a51b181ece1 /src/Propellor/Utilities.hs | |
| parent | 8bb64dd37de63e2d86428bb3d707b1aef287e172 (diff) | |
propellor spin
Diffstat (limited to 'src/Propellor/Utilities.hs')
| -rw-r--r-- | src/Propellor/Utilities.hs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/Propellor/Utilities.hs b/src/Propellor/Utilities.hs new file mode 100644 index 00000000..33af4eda --- /dev/null +++ b/src/Propellor/Utilities.hs @@ -0,0 +1,27 @@ +-- | Re-exports some of propellor's internal utility modules. +-- +-- These are used in the implementation of propellor, including some of its +-- properties. However, there is no API stability; any of these can change +-- or be removed without a major version number increase. +-- +-- Use outside propellor at your own risk. + +module Propellor.Utilities ( + module Utility.PartialPrelude + , module Utility.Process + , module Utility.Exception + , module Utility.Env + , module Utility.Directory + , module Utility.Tmp + , module Utility.Monad + , module Utility.Misc +) where + +import Utility.PartialPrelude +import Utility.Process +import Utility.Exception +import Utility.Env +import Utility.Directory +import Utility.Tmp +import Utility.Monad +import Utility.Misc |
