Mercurial > laserkard
diff server.clj @ 75:874a6a2c28cf laserkard
session with nick. redisigned faq page
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Tue, 29 Jun 2010 15:36:30 -0400 |
parents | ad52bd1a084b |
children | 5b0753c6f34d |
line wrap: on
line diff
1.1 --- a/server.clj Fri Jun 25 19:59:31 2010 -0400 1.2 +++ b/server.clj Tue Jun 29 15:36:30 2010 -0400 1.3 @@ -2,13 +2,14 @@ 1.4 (:use (compojure.http request servlet session routes) 1.5 (compojure.server jetty) 1.6 (compojure control) 1.7 - (laserkard buy-temp) 1.8 + (laserkard buy-temp faq) 1.9 1.10 )) 1.11 1.12 (defroutes example 1.13 (GET "/index.clj" [] "<h1> hello, connie, good to meet you</h1>") 1.14 - (GET "/buy-temp.clj" [] (buy-gen)) 1.15 + (GET "/buy-temp.clj" [] (buy-gen)) 1.16 + (GET "/faq.clj" [] (faq)) 1.17 ) 1.18 1.19