diff options
author | colin <colin@cicadas.surf> | 2024-05-11 12:50:44 -0700 |
---|---|---|
committer | colin <colin@cicadas.surf> | 2024-05-11 12:50:44 -0700 |
commit | 2dc174bf4960f413dfb0a051eb446c167984c546 (patch) | |
tree | 344bea0127011eba22597105a61c9a10daffc699 | |
parent | 5f261045d4c116bed249eb478473cec82d2a259b (diff) |
Remove: spurious partial example from readme
-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 |