aboutsummaryrefslogtreecommitdiff
path: root/src/package.lisp
diff options
context:
space:
mode:
authorcolin <colin@cicadas.surf>2024-05-11 12:05:54 -0700
committercolin <colin@cicadas.surf>2024-05-11 12:05:54 -0700
commit887818ec9bcfcf288ed932a566ed6219f5b9f212 (patch)
tree5d6797c148d09a3f919eda86a5b7fe87c7bfb86c /src/package.lisp
parent0ed31297b4ed67ac86f683b4806acbfab73190ec (diff)
Add: kitchensink example
Diffstat (limited to 'src/package.lisp')
-rw-r--r--src/package.lisp18
1 files changed, 17 insertions, 1 deletions
diff --git a/src/package.lisp b/src/package.lisp
index a9ab69f..e8f56b3 100644
--- a/src/package.lisp
+++ b/src/package.lisp
@@ -2,17 +2,33 @@
(defpackage #:weekend
(:use #:cl #:flatbind)
+ (:import-from
+ #:hunchentoot
+ #:mime-type
+ #:handle-static-file
+ #:set-cookie)
(:local-nicknames
(#:http #:hunchentoot)
(#:a #:alexandria-2)
(#:mop #:closer-mop))
(:export
;; HANDLER PROTOCOL
- #:authenticate
+ #:authenticate
#:authorize
#:handle
#:not-found
#:slot-required
+ #:not-found
+ #:redirect
+ #:endpoint-redirect
+ #:route-to
+ #:get-cookie
+
+ ;; re-exports
+ #:mime-type
+ #:handle-static-file
+ #:set-cookie
+
;; METACLASS
#:endpoint