aboutsummaryrefslogtreecommitdiff
path: root/package.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'package.lisp')
-rw-r--r--package.lisp4
1 files changed, 4 insertions, 0 deletions
diff --git a/package.lisp b/package.lisp
index e03ce20..515cf61 100644
--- a/package.lisp
+++ b/package.lisp
@@ -1,5 +1,7 @@
;;;; package.lisp
+;; any backend must implement functions for these
+;; use the hunchentoot backend as a reference
(defpackage #:lazybones.backend
(:export
;; request functions
@@ -27,6 +29,8 @@
#:start-server
#:stop-server))
+;; the symbols exported here are available for end users to use in the
+;; building of their apps
(defpackage #:lazybones
(:use #:cl #:lazybones.backend)
(:local-nicknames (#:a #:alexandria)