/dhall-infra/Instance/updateServer.dhall
Copy path to clipboardUpdate the server of an instance
Source
--| Update the server of an instance
let Server = ../Server/package.dhall
let Instance = { Type = ./Type.dhall }
let updateServer
: forall (update : Server.Type -> Server.Type) ->
forall (instance : Instance.Type) ->
Instance.Type
= \(update : Server.Type -> Server.Type) ->
\(instance : Instance.Type) ->
instance // { server = update instance.server }
in updateServer