summaryrefslogtreecommitdiff
path: root/dnd.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'dnd.lisp')
-rw-r--r--dnd.lisp17
1 files changed, 0 insertions, 17 deletions
diff --git a/dnd.lisp b/dnd.lisp
deleted file mode 100644
index 7f7dc77..0000000
--- a/dnd.lisp
+++ /dev/null
@@ -1,17 +0,0 @@
-;;;; dnd.lisp
-
-(in-package #:dnd)
-
-(defvar *dnd-arena* nil
- "The instance of the HTTP server")
-
-(defun conjure-arena ()
- (init-db)
- (setf *dnd-arena* (lzb:create-server))
- (lzb:install-app *dnd-arena* (lzb:app 'dnd))
- (lzb:start-server *dnd-arena*))
-
-(defun boot ()
- (swank:create-server :port 9876 :dont-close t)
- (conjure-arena)
- (loop (sleep 1)))