12 lines
318 B
Common Lisp
12 lines
318 B
Common Lisp
;;;; cl-scopes/web/client - web client functionality
|
|
|
|
(defpackage :scopes/web/client
|
|
(:use :common-lisp)
|
|
(:local-nicknames (:config :scopes/config))
|
|
(:export #:config #:url))
|
|
|
|
(in-package :scopes/web/client)
|
|
|
|
(defclass config (config:base)
|
|
((url :reader url :initarg :url :initform "http://localhost:8899")))
|
|
|