aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Okay <okay@toyful.space>2022-02-07 14:52:15 -0600
committerColin Okay <okay@toyful.space>2022-02-07 14:52:25 -0600
commitb48bc4a09c1a44a2b1151ec5fa2452965a76ae95 (patch)
tree9becc510e04703c0241d5092c5ccb86bc3d68808
parent8b188afc2d518761dba8ac6e3776c099506b379d (diff)
comments in 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)