aboutsummaryrefslogtreecommitdiff
path: root/src/package.lisp
diff options
context:
space:
mode:
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