cmt-0.7.0.0: src/Cmt/Types/Next.hs
{-# LANGUAGE NoImplicitPrelude #-}
module Cmt.Types.Next
( Next(..)
) where
import ClassyPrelude
import Cmt.Types.Config (Outputs)
data Next
= Previous
| PreDefined Text
Outputs
| Continue Outputs
| Version
| ConfigLocation
| Help
| Error Text
| DryRun Next
deriving (Eq, Show)