As the title says. What is the difference between sending response through a channel and just return a map.
(defn handler-one
[request]
(response "hello world")
(defn handler-two
[request]
(with-channel request channel
(send! channel (response "hello world"))