ghcup-hs/lib/GHCup/Types/Prompts.hs

9 lines
152 B
Haskell

module GHCup.Types.Prompts where
import Data.Text (Text)
type PromptQuestion = Text
data PromptResponse = PromptYes | PromptNo
deriving (Show, Eq)