Caveman.Route

SYNOPSIS

;; for Function  
@url GET "/login"  
(defun login (req)  
  ;; response  
  )  
 
;; for Clack Component  
@url GET "/member/:id"  
(defclass <member-profile> (<component>) ())  
(defmethod call ((this <member-profile>) req)  
  ;; response  
  ) 

DESCRIPTION

Caveman.Route provides an useful annotation `url' to define a Caveman Action.

AUTHOR

EXTERNAL SYMBOLS