summaryrefslogtreecommitdiff
path: root/package.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'package.lisp')
-rw-r--r--package.lisp47
1 files changed, 22 insertions, 25 deletions
diff --git a/package.lisp b/package.lisp
index 16473c5..ff06a36 100644
--- a/package.lisp
+++ b/package.lisp
@@ -1,30 +1,27 @@
;;;; package.lisp
-(defpackage #:dnd.api
- (:use #:cl)
- (:local-nicknames
- (#:db #:bknr.datastore)
- (#:idx #:bknr.indices)
- (#:lzb #:lazybones)
- (#:re #:cl-ppcre)
- (#:json #:jonathan))
- (:import-from
- #:lazybones
- #:defendpoint
- #:defendpoint*)
- (:import-from
- #:derrida
- #:with-plist)
- (:export
- #:dnd.api
- #:init-db))
-
(defpackage #:dnd
(:use #:cl)
- (:local-nicknames
- (#:lzb #:lazybones)
- (#:api #:dnd.api))
- (:export
- #:start))
+ (:local-nicknames (#:db #:bknr.datastore)
+ (#:idx #:bknr.indices)
+ (#:lzb #:lazybones)
+ (#:re #:cl-ppcre)
+ (#:json #:jonathan))
+ (:import-from #:lazybones
+ #:defendpoint
+ #:defendpoint*)
+ (:import-from #:derrida
+ #:with-plist))
- ; the app's name
+(defpackage #:dnd.api
+ (:use #:cl)
+ (:local-nicknames (#:db #:bknr.datastore)
+ (#:idx #:bknr.indices)
+ (#:lzb #:lazybones)
+ (#:re #:cl-ppcre)
+ (#:json #:jonathan))
+ (:import-from #:lazybones
+ #:defendpoint
+ #:defendpoint*)
+ (:import-from #:derrida
+ #:with-plist))