Expose things properly (missing re-exports)
parent
131216d4f4
commit
8b12f38d6b
|
@ -1,5 +1,4 @@
|
|||
-- | Main module of the butcher interface. It reexports everything that is
|
||||
-- exposed in the submodules.
|
||||
-- | Reexports of everything that is exposed in the submodules.
|
||||
module UI.Butcher.Monadic
|
||||
( -- * Types
|
||||
Input (..)
|
||||
|
@ -21,6 +20,8 @@ module UI.Butcher.Monadic
|
|||
, module UI.Butcher.Monadic.Pretty
|
||||
-- * Wrapper around System.Environment.getArgs
|
||||
, module UI.Butcher.Monadic.IO
|
||||
-- * Utilities for interactive feedback of commandlines (completions etc.)
|
||||
, module UI.Butcher.Monadic.Interactive
|
||||
-- , cmds
|
||||
-- , sample
|
||||
-- , test
|
||||
|
@ -33,7 +34,10 @@ module UI.Butcher.Monadic
|
|||
, addButcherDebugCommand
|
||||
, addShellCompletionCommand
|
||||
, addShellCompletionCommand'
|
||||
-- * Advanced usage
|
||||
, mapOut
|
||||
, emptyCommandDesc
|
||||
, Visibility (..)
|
||||
)
|
||||
where
|
||||
|
||||
|
@ -48,6 +52,7 @@ import UI.Butcher.Monadic.BuiltinCommands
|
|||
import UI.Butcher.Monadic.Internal.Core
|
||||
import UI.Butcher.Monadic.Pretty
|
||||
import UI.Butcher.Monadic.IO
|
||||
import UI.Butcher.Monadic.Interactive
|
||||
|
||||
import qualified Text.PrettyPrint as PP
|
||||
|
||||
|
|
|
@ -9,6 +9,7 @@ module UI.Butcher.Monadic.Types
|
|||
, ParsingError (..)
|
||||
, PartDesc(..)
|
||||
, emptyCommandDesc
|
||||
, Visibility (..)
|
||||
)
|
||||
where
|
||||
|
||||
|
|
Loading…
Reference in New Issue