packages feed

hw-packed-vector-0.2.1.0: app/App/Commands.hs

module App.Commands where

import App.Commands.CreateIndex
import Options.Applicative

commands :: Parser (IO ())
commands = commandsGeneral

commandsGeneral :: Parser (IO ())
commandsGeneral = subparser $ mempty
  <>  commandGroup "Commands:"
  <>  cmdCreateIndex