10 lines
256 B
Common Lisp
10 lines
256 B
Common Lisp
;;;; cl-scopes/test/etc/config-web
|
|
|
|
(in-package :scopes/test-web)
|
|
|
|
(setf *config* (core:root-config :env-keys '(:address :port)))
|
|
|
|
(make-instance 'server:config :parent *config*
|
|
:port "8899")
|
|
|
|
(make-instance 'client:config :parent *config*)
|