9 lines
243 B
Common Lisp
9 lines
243 B
Common Lisp
(defpackage cl-matrix-config
|
|
(:use #:cl)
|
|
(:export :+database+
|
|
:+server-name+))
|
|
(in-package :cl-matrix-config)
|
|
|
|
(defvar +database+ '("cl_matrix_dev" "cl_matrix_dev" "cl_matrix_dev" "localhost"))
|
|
|
|
(defvar +server-name+ "localhost:5000")
|