deepl-0.1.0.0: src/Config.hs
{-# LANGUAGE DeriveDataTypeable #-}
module Config where
import Data.Data (Data)
import Protolude (Text, Typeable)
type Token = Text
data Config = Config
{ token :: Token
, input :: FilePath
, output :: FilePath
, lang :: Text
}
deriving (Show, Data, Typeable)