fix "import Hledger", and also include Hledger.Utils, for easier scripting

This commit is contained in:
Simon Michael 2011-06-13 20:46:29 +00:00
parent c461104a53
commit b27c90aea5

9
hledger-lib/Hledger.hs Normal file
View File

@ -0,0 +1,9 @@
module Hledger (
module Hledger.Data
,module Hledger.Read
,module Hledger.Utils
)
where
import Hledger.Data
import Hledger.Read
import Hledger.Utils