cachix-api-0.7.0: src/Cachix/Types/DeployResponse.hs
{-# LANGUAGE DeriveAnyClass #-}
module Cachix.Types.DeployResponse where
import Data.Aeson
( FromJSON,
ToJSON,
)
import Data.HashMap.Strict
import Data.Swagger (ToSchema)
import Protolude
newtype DeployResponse = DeployResponse
{ agents :: HashMap Text Text
}
deriving (Show, Generic, FromJSON, ToJSON, ToSchema, NFData)