hw-ip-2.3.1.1: app/App/Commands.hs
module App.Commands where import App.Commands.TextToWord import Data.Semigroup ((<>)) import Options.Applicative commands :: Parser (IO ()) commands = commandsGeneral commandsGeneral :: Parser (IO ()) commandsGeneral = subparser $ mempty <> commandGroup "Commands:" <> cmdTextToWord