summaryrefslogtreecommitdiff
path: root/src/package.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/package.lisp')
-rw-r--r--src/package.lisp24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/package.lisp b/src/package.lisp
new file mode 100644
index 0000000..20a16d0
--- /dev/null
+++ b/src/package.lisp
@@ -0,0 +1,24 @@
+;;;; package.lisp
+
+(defpackage #:dnd
+ (:use #:cl)
+ (:local-nicknames (#:db #:bknr.datastore)
+ (#:idx #:bknr.indices)
+ (#:lzb #:lazybones)
+ (#:re #:cl-ppcre)
+ (#:json #:jonathan)
+ (#:a #:alexandria-2))
+ (:import-from #:testiere
+ #:defun/t)
+ (:import-from #:lazybones
+ #:defendpoint*)
+ (:import-from #:derrida
+ #:with-plist)
+ (:import-from #:spinneret
+ #:with-html
+ #:with-html-string)
+ (:import-from #:defclass-std
+ #:defclass/std)
+ (:export :boot))
+
+