Skip to content

Instantly share code, notes, and snippets.

@jacoelho
Created July 31, 2016 19:36
Show Gist options
  • Save jacoelho/38e4ca6488ed991fc87d1ef3f1edae8d to your computer and use it in GitHub Desktop.
Save jacoelho/38e4ca6488ed991fc87d1ef3f1edae8d to your computer and use it in GitHub Desktop.
(defroutes app-routes
(GET "/" [] (get-all-todo))
(POST "/" {params :params} (create-todo params))
(context "/:id" [id]
(GET "/" [] (get-todo id))
(PUT "/" {params :params} (update-todo id params))
(DELETE "/" [] (delete-todo id)))
(not-found "sorry"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment