aboutsummaryrefslogtreecommitdiff
path: root/src/package.lisp
blob: a9ab69f5147202d1e6e0ad7ce8a0de6e7fdbf976 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
;;;; package.lisp

(defpackage #:weekend
  (:use #:cl #:flatbind)
  (:local-nicknames
   (#:http #:hunchentoot)
   (#:a #:alexandria-2)
   (#:mop #:closer-mop))
  (:export
   ;; HANDLER PROTOCOL
   #:authenticate
   #:authorize
   #:handle
   #:not-found
   #:slot-required

   ;; METACLASS
   #:endpoint
   #:register-body-parser))