summaryrefslogtreecommitdiff
path: root/dnd.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 /dnd.lisp
parentab0d667b3776786461d15112b648aafc3f00280f (diff)
Revert "Refactor: to embrace the new dnd.api package more fully"
This reverts commit ab0d667b3776786461d15112b648aafc3f00280f.
Diffstat (limited to 'dnd.lisp')
-rw-r--r--dnd.lisp16
1 files changed, 0 insertions, 16 deletions
diff --git a/dnd.lisp b/dnd.lisp
index 4933d85..a5cb0a4 100644
--- a/dnd.lisp
+++ b/dnd.lisp
@@ -1,19 +1,3 @@
;;;; dnd.lisp
(in-package #:dnd)
-
-
-(defvar *dnd-arena* nil
- "The instance of the HTTP server.")
-
-(defun conjure-arena ()
- (setf *dnd-arena* (lzb:create-server))
- (lzb:install-app
- *dnd-arena*
- (lzb:app 'dnd.api:dnd.api)) ; annoying but needed for now
- (lzb:start-server *dnd-arena*))
-
-
-(defun start ()
- (api:init-db)
- (conjure-arena))