Advertisement
Guest User

liberator

a guest
Oct 6th, 2014
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (defroutes app
  2.   (ANY "/user/:u" [u]
  3.       :allowed-methods [:get :post]
  4.       :handle-ok (fn [_] (user u))
  5.       :post! (fn [_] (format "called post with %s" u))))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement