Returns a response tuple corresponding to an HTML dump of the request
req as it was recieved by this app.
(defn handle-dump
"Returns a response tuple corresponding to an HTML dump of the request
req as it was recieved by this app."
[req]
(-> (response (template req))
(status 200)
(content-type "text/html")))
Comments top
No comments for handle-dump. Log in to add a comment.