blob: aff538f3819782fc17767e9f2e4d263f252df210 (
plain) (
tree)
|
|
let Plugin = ./Plugin.dhall
in let config = constructors ./Config.dhall
in λ(statusCode : Natural)
→ λ(contentType : Text)
→ λ(body : Text)
→ { name =
"request-termination"
, config =
config.RequestTermination
{ status_code =
statusCode
, content_type =
contentType
, body =
body
}
}
: Plugin
|