cmt-0.7.1.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
deriving (Eq, Show)