packages feed

super-user-spark-0.3.1.0: src/Config/Types.hs

module Config.Types where

import           CoreTypes

data SparkConfig = Config
    { conf_compile_output             :: Maybe FilePath
    , conf_compile_kind               :: Maybe DeploymentKind
    , conf_compile_override           :: Maybe DeploymentKind
    , conf_deploy_replace_links       :: Bool
    , conf_deploy_replace_files       :: Bool
    , conf_deploy_replace_directories :: Bool
    , conf_debug                      :: Bool
    } deriving (Show, Eq)