hw-json-simple-cursor-0.1.0.0: app/App/Commands/Types.hs
{-# LANGUAGE DeriveGeneric #-}
{-# LANGUAGE DuplicateRecordFields #-}
module App.Commands.Types
( CreateIndexOptions(..)
) where
import GHC.Generics
data CreateIndexOptions = CreateIndexOptions
{ filePath :: FilePath
, backend :: String
, outputIbFile :: Maybe FilePath
, outputBpFile :: Maybe FilePath
} deriving (Eq, Show, Generic)