summaryrefslogtreecommitdiff
path: root/dnd.lisp
diff options
context:
space:
mode:
authorGrant Shoshin Shangreaux <shoshin@cicadas.surf>2023-01-07 11:12:15 -0600
committerGrant Shoshin Shangreaux <shoshin@cicadas.surf>2023-01-07 11:12:15 -0600
commitaee7f487f97c10c15b6c7b48156cc95db19d9137 (patch)
tree9ccdb9b7a3e356ed39f2ed71b2d04b7e2718df20 /dnd.lisp
parent9a040d4e78ab07eb9c482a40042f2ba92d2a8e3b (diff)
First Draft of hero creation and login
Diffstat (limited to 'dnd.lisp')
-rw-r--r--dnd.lisp8
1 files changed, 8 insertions, 0 deletions
diff --git a/dnd.lisp b/dnd.lisp
index a5cb0a4..3c80f2b 100644
--- a/dnd.lisp
+++ b/dnd.lisp
@@ -1,3 +1,11 @@
;;;; 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))
+ (lzb:start-server *dnd-arena*))