Skip to content

Instantly share code, notes, and snippets.

@mikekelly
Created April 21, 2011 11:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikekelly/934186 to your computer and use it in GitHub Desktop.
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