summaryrefslogtreecommitdiff
path: root/package.lisp
diff options
context:
space:
mode:
authorGrant Shoshin Shangreaux <shoshin@cicadas.surf>2023-01-07 09:38:34 -0600
committerGrant Shoshin Shangreaux <shoshin@cicadas.surf>2023-01-07 09:38:34 -0600
commitee7919667832660ef05939823af5516eb9344e16 (patch)
treed0da6e22ddf93d2546fa415a44594f7be0f5b379 /package.lisp
parentab0d667b3776786461d15112b648aafc3f00280f (diff)
Revert "Refactor: to embrace the new dnd.api package more fully"
This reverts commit ab0d667b3776786461d15112b648aafc3f00280f.
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))