Created
September 20, 2012 07:57
-
-
Save joekarma/3754531 to your computer and use it in GitHub Desktop.
RESTAS Example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (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