hercules-ci-api-0.7.1.0: src/Hercules/API/Build/DerivationInfo/DerivationOutput.hs
{-# LANGUAGE DeriveAnyClass #-}
module Hercules.API.Build.DerivationInfo.DerivationOutput where
import Hercules.API.Prelude
data DerivationOutput = DerivationOutput
{ outputName :: Text,
outputPath :: Maybe Text
}
deriving (Generic, Show, Eq, NFData, ToJSON, FromJSON, ToSchema)