Skip to content

Instantly share code, notes, and snippets.

@swlkr
Created September 28, 2017 04:02
Show Gist options
  • Select an option

  • Save swlkr/19c941b4a641d881fa4ae12c8931a207 to your computer and use it in GitHub Desktop.

Select an option

Save swlkr/19c941b4a641d881fa4ae12c8931a207 to your computer and use it in GitHub Desktop.
(ns trail-usage.core
(:require [trail.core :as trail]))
(def routes
(-> (trail/get "/items" items/index)
(trail/get "/items/:id" items/show)
(trail/get "/items/:id/new" items/new!)
(trail/get "/items/:id/edit" items/edit)
(trail/post "/items" items/create)
(trail/put "/items/:id" items/update)
(trail/delete "/items/:id" items/delete)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment