hercules-ci-api-0.6.0.0: src/Hercules/API/Build/AgentRequirements.hs
{-# LANGUAGE DeriveAnyClass #-}
module Hercules.API.Build.AgentRequirements where
import Hercules.API.Prelude
data AgentRequirements = AgentRequirements
{ platform :: Text,
requiredSystemFeatures :: [Text]
}
deriving (Generic, Show, Eq, NFData, ToJSON, FromJSON, ToSchema)