Skip to content

Instantly share code, notes, and snippets.

@mikekelly
Created April 21, 2011 11:12
Show Gist options
  • Select an option

  • Save mikekelly/934186 to your computer and use it in GitHub Desktop.

Select an option

Save mikekelly/934186 to your computer and use it in GitHub Desktop.
Example resource definition
(defresource "example"
(GET (lambda (req)
'(200
(:content-type "text/plain")
("This is the example resource"))))
(POST (lambda (req)
'(200
(:content-type "text/plain")
("Thanks for posting something")))))
(route "/example_url" 'example)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment