aboutsummaryrefslogtreecommitdiffhomepage
path: root/dhall/server/service/plugin/mkRequestTransformer.dhall
blob: 1d8d608914a1fc74695c21abd0400bd9cdb28bf2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
let Plugin = ./Plugin.dhall

in  let config = constructors ./Config.dhall

	in    λ(header : Text)
		→   { name =
				"request-transformer"
			, config =
				config.RequestTransformer { add = { headers = [ header ] } }
			}
		  : Plugin