aboutsummaryrefslogtreecommitdiff
path: root/README.org
diff options
context:
space:
mode:
Diffstat (limited to 'README.org')
-rw-r--r--README.org21
1 files changed, 0 insertions, 21 deletions
diff --git a/README.org b/README.org
index 2007cfb..e48cfe9 100644
--- a/README.org
+++ b/README.org
@@ -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