diff options
-rw-r--r-- | README.org | 21 |
1 files changed, 0 insertions, 21 deletions
@@ -64,24 +64,3 @@ class-defining macros. This version of weekend is strongly tied to Hunchentoot. -** An example - -Suppose you want a page that simply returns "hello": - -#+begin_src lisp - -(defclass hello () - () - (:metaclass weekend:endpoint) - (:method :get) - (:route-parts "hello") - (:content-type "text/plain")) - -(defmethod weekend:handle ((req hello)) - "Hello!") - - - - - -#+end_src |