ad-alta-voce/app/Main.hs

17 lines
322 B
Haskell

{-|
Module : Main
Copyright : (c) Raffaele Mignone 2021
License : GPL-3
Maintainer : git@norangeb.it
-}
module Main where
import Options.Applicative ( execParser )
import Command.CLI ( commandParserInfo, execute )
main :: IO ()
main = do
cliCommand <- execParser commandParserInfo
execute cliCommand