hledger/hledger/app/hledger-cli.hs
Simon Michael c83970422c cli: fix a build failure with ghc 9.0 (#1503)
Also remove the obsolete shebang line.
2021-03-12 06:59:43 -08:00

10 lines
240 B
Haskell
Executable File

-- the hledger command-line executable; see Hledger/Cli/Main.hs
module Main (main)
where
import qualified Hledger.Cli.Main (main)
-- Have to write this explicitly for GHC 9.0.1a for some reason:
main :: IO ()
main = Hledger.Cli.Main.main