hledger/Commands/All.hs
2009-06-02 18:29:01 +00:00

38 lines
881 B
Haskell

{-# OPTIONS_GHC -cpp #-}
{-|
This module re-exports all the Commands modules. It's just a convenience,
you can import individual modules if you prefer.
-}
module Commands.All (
module Commands.Add,
module Commands.Balance,
module Commands.Convert,
module Commands.Histogram,
module Commands.Print,
module Commands.Register,
module Commands.Stats,
#ifdef VTY
module Commands.UI,
#endif
#ifdef HAPPS
module Commands.Web,
#endif
)
where
import Commands.Add
import Commands.Balance
import Commands.Convert
import Commands.Histogram
import Commands.Print
import Commands.Register
import Commands.Stats
#ifdef VTY
import Commands.UI
#endif
#ifdef HAPPS
import Commands.Web
#endif