11 lines
217 B
Common Lisp
11 lines
217 B
Common Lisp
;;;; cl-scopes/config
|
|
|
|
;;;; Utilities for configuration of scopes services.
|
|
|
|
(defpackage :scopes/config
|
|
(:use :common-lisp)
|
|
(:export #:base #:make-system-path))
|
|
|
|
(in-package :scopes/config)
|
|
|
|
(defclass base () ())
|