ring

2020-01-09T17:53:14.001Z

ring.util.response/header seems to take one header (key value). Whats the way to add multiple at once?

2020-01-12T20:19:04.002600Z

Make the value a collection. e.g. {"X-Foo" ["bar" "baz"]}

2020-01-13T14:20:28.002800Z

ah.

2020-01-09T17:58:15.002100Z

hmm it looks like you can just assoc in (assoc-in(handler request) [:headers <header>] <value>))`

2020-01-09T17:59:51.002500Z

I mean, thats just what the header function does. i dont know what i expected.