15 lines
354 B
Common Lisp
15 lines
354 B
Common Lisp
;; rkllm-server
|
|
|
|
(defsystem "rkllm-server"
|
|
:description "A brief description of my application."
|
|
:version "1.0"
|
|
:author "Your Name <your.email@example.com>"
|
|
:license "MIT License"
|
|
|
|
;; Dependencies
|
|
:depends-on (:cl-autowrap :woo :clack :ningle :metabang-bind)
|
|
|
|
;; Components
|
|
:components ((:file "server")
|
|
(:module "lib")))
|
|
|