aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Okay <okay@toyful.space>2022-02-06 08:33:04 -0600
committerColin Okay <okay@toyful.space>2022-02-06 08:33:21 -0600
commit8debc67c73f29a1c3ec4627e39161100568ab8c8 (patch)
tree94ab26a8fb9404c4f452c88f1d8f7d26c1b9fd65
parentf4516bd373812b81261c3018c39de7b6fe141d6b (diff)
homepackage of dynamic variables changed to lazybones.backend
Just so that they can be referenced without prefix as the default value of keyword arguments in lazybones.backend
-rw-r--r--package.lisp7
1 files changed, 3 insertions, 4 deletions
diff --git a/package.lisp b/package.lisp
index 3217d59..278fd5f 100644
--- a/package.lisp
+++ b/package.lisp
@@ -2,6 +2,9 @@
(defpackage #:lazybones.backend
(:export
+ #:*request*
+ #:*response*
+ #:*app*
#:request-url
#:request-path
#:request-host
@@ -13,7 +16,6 @@
#:request-header
#:request-method
#:request-body
-
#:install-app
#:start-server
#:stop-server
@@ -24,9 +26,6 @@
(:local-nicknames (#:a #:alexandria)
(#:re #:cl-ppcre))
(:export
- #:*request*
- #:*response*
- #:*app*
#:run-endpoint
#:find-endpoint))