importable Hledger.Vty and Hledger.Chart modules
This commit is contained in:
parent
02a43f1e40
commit
7367e5b24d
21
hledger-chart/Hledger/Chart.hs
Normal file
21
hledger-chart/Hledger/Chart.hs
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{-|
|
||||||
|
Re-export the modules of the hledger-chart program.
|
||||||
|
-}
|
||||||
|
|
||||||
|
module Hledger.Chart (
|
||||||
|
module Hledger.Chart.Main,
|
||||||
|
module Hledger.Chart.Options,
|
||||||
|
tests_Hledger_Chart
|
||||||
|
)
|
||||||
|
where
|
||||||
|
import Test.HUnit
|
||||||
|
|
||||||
|
import Hledger.Chart.Main
|
||||||
|
import Hledger.Chart.Options
|
||||||
|
|
||||||
|
tests_Hledger_Chart :: Test
|
||||||
|
tests_Hledger_Chart = TestList
|
||||||
|
[
|
||||||
|
-- tests_Hledger_Chart_Main
|
||||||
|
-- tests_Hledger_Chart_Options
|
||||||
|
]
|
||||||
@ -33,7 +33,9 @@ executable hledger-chart
|
|||||||
main-is: hledger-chart.hs
|
main-is: hledger-chart.hs
|
||||||
ghc-options: -threaded -W
|
ghc-options: -threaded -W
|
||||||
other-modules:
|
other-modules:
|
||||||
|
Hledger.Chart
|
||||||
Hledger.Chart.Main
|
Hledger.Chart.Main
|
||||||
|
Hledger.Chart.Options
|
||||||
build-depends:
|
build-depends:
|
||||||
hledger == 0.15
|
hledger == 0.15
|
||||||
,hledger-lib == 0.15
|
,hledger-lib == 0.15
|
||||||
|
|||||||
@ -1,2 +1,2 @@
|
|||||||
#!/usr/bin/env runhaskell
|
#!/usr/bin/env runhaskell
|
||||||
import Hledger.Chart.Main (main)
|
import Hledger.Chart (main)
|
||||||
|
|||||||
21
hledger-vty/Hledger/Vty.hs
Normal file
21
hledger-vty/Hledger/Vty.hs
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
{-|
|
||||||
|
Re-export the modules of the hledger-vty program.
|
||||||
|
-}
|
||||||
|
|
||||||
|
module Hledger.Vty (
|
||||||
|
module Hledger.Vty.Main,
|
||||||
|
module Hledger.Vty.Options,
|
||||||
|
tests_Hledger_Vty
|
||||||
|
)
|
||||||
|
where
|
||||||
|
import Test.HUnit
|
||||||
|
|
||||||
|
import Hledger.Vty.Main
|
||||||
|
import Hledger.Vty.Options
|
||||||
|
|
||||||
|
tests_Hledger_Vty :: Test
|
||||||
|
tests_Hledger_Vty = TestList
|
||||||
|
[
|
||||||
|
-- tests_Hledger_Vty_Main
|
||||||
|
-- tests_Hledger_Vty_Options
|
||||||
|
]
|
||||||
@ -33,7 +33,9 @@ executable hledger-vty
|
|||||||
main-is: hledger-vty.hs
|
main-is: hledger-vty.hs
|
||||||
ghc-options: -threaded -W
|
ghc-options: -threaded -W
|
||||||
other-modules:
|
other-modules:
|
||||||
|
Hledger.Vty
|
||||||
Hledger.Vty.Main
|
Hledger.Vty.Main
|
||||||
|
Hledger.Vty.Options
|
||||||
build-depends:
|
build-depends:
|
||||||
hledger == 0.15
|
hledger == 0.15
|
||||||
,hledger-lib == 0.15
|
,hledger-lib == 0.15
|
||||||
|
|||||||
@ -1,2 +1,2 @@
|
|||||||
#!/usr/bin/env runhaskell
|
#!/usr/bin/env runhaskell
|
||||||
import Hledger.Vty.Main (main)
|
import Hledger.Vty (main)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user