Skip to content

Instantly share code, notes, and snippets.

@joekarma
Created September 20, 2012 07:57
Show Gist options
  • Select an option

  • Save joekarma/3754531 to your computer and use it in GitHub Desktop.

Select an option

Save joekarma/3754531 to your computer and use it in GitHub Desktop.
RESTAS Example
(eval-when (:compile-toplevel :load-toplevel)
(ql:quickload :restas))
(restas:define-module :my-site
(:use :cl))
(in-package :my-site)
(restas:define-route hello ("/hello")
"Hello!")
(restas:start :my-site :port 8080)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment