packages feed

succinct-0.0.0.1: components/succinct-json-simd/app/App/Commands.hs

module App.Commands where

import App.Commands.Capabilities
import App.Commands.CreateIndex
import Options.Applicative

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

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