hledger/hledger-ui/hledger-ui.hs
Simon Michael 4578d5d329 ui: work around ghc 9.0 build failure (#1503)
Also remove obsolete shebang line.
2021-04-06 07:45:49 -10:00

8 lines
220 B
Haskell

module Main (main)
where
-- import Hledger.UI (main)
-- workaround for GHC 9.0.1 https://gitlab.haskell.org/ghc/ghc/-/issues/19397, #1503
import qualified Hledger.UI.Main (main)
main :: IO ()
main = Hledger.UI.Main.main