diff options
author | Grant Shoshin Shangreaux <shoshin@cicadas.surf> | 2023-03-26 11:31:29 -0500 |
---|---|---|
committer | Grant Shoshin Shangreaux <shoshin@cicadas.surf> | 2023-03-26 11:31:29 -0500 |
commit | 1e942dd0c26b0709fb8878588c072e50020eec34 (patch) | |
tree | 37e48fbb75fca38a35a0348cf3d560fb7a168bea /src | |
parent | daa6f103c5fc5c473721a7b2bda16363ae39d391 (diff) |
Diffstat (limited to 'src')
-rw-r--r-- | src/dnd.lisp | 3 | ||||
-rw-r--r-- | src/init.lisp | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/dnd.lisp b/src/dnd.lisp index 70edd7d..040f24a 100644 --- a/src/dnd.lisp +++ b/src/dnd.lisp @@ -2,9 +2,6 @@ (in-package #:dnd) -(defvar *config* nil - "Instance of the config class globally available.") - (defvar *dnd-arena* nil "The instance of the HTTP server") diff --git a/src/init.lisp b/src/init.lisp index d7636a6..e675ef9 100644 --- a/src/init.lisp +++ b/src/init.lisp @@ -4,7 +4,8 @@ ;;; CONFIGURATION -(defvar *config* nil) +(defvar *config* nil + "Instance of the config class globally available.") (defclass/std config () ((datastore-directory :ir :std #P"/srv/dnd/store/") |