From aee7f487f97c10c15b6c7b48156cc95db19d9137 Mon Sep 17 00:00:00 2001 From: Grant Shoshin Shangreaux Date: Sat, 7 Jan 2023 11:12:15 -0600 Subject: First Draft of hero creation and login --- dnd.lisp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'dnd.lisp') 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*)) -- cgit v1.2.3