hercules-ci-api-agent-0.3.0.0: src/Hercules/API/Agent/LifeCycle/ServiceInfo.hs
{-# LANGUAGE DeriveAnyClass #-}
module Hercules.API.Agent.LifeCycle.ServiceInfo
( ServiceInfo (..),
)
where
import Hercules.API.Prelude
data ServiceInfo = ServiceInfo
{ version :: (Int, Int),
agentSocketBaseURL :: Text,
bulkSocketBaseURL :: Text
}
deriving (Generic, Show, Eq, NFData, ToJSON, FromJSON)