hledger/extra/hledger-chart/Hledger/Chart.hs
Simon Michael 74512814ec cli/ui/web: rename X.Options modules to X.XOptions
Make these modules' names more like the heavily-used types they
define (CliOpts, UIOpts, WebOpts). This is consistent with
RawOptions and ReportOptions, and helps with code navigation.
2015-08-28 12:43:51 -07:00

22 lines
463 B
Haskell

{-|
Re-export the modules of the hledger-chart program.
-}
module Hledger.Chart (
module Hledger.Chart.Main,
module Hledger.Chart.ChartOptions,
tests_Hledger_Chart
)
where
import Test.HUnit
import Hledger.Chart.Main
import Hledger.Chart.ChartOptions
tests_Hledger_Chart :: Test
tests_Hledger_Chart = TestList
[
-- tests_Hledger_Chart_Main
-- tests_Hledger_Chart_ChartOptions
]