-
-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathclack.asd
More file actions
17 lines (17 loc) · 561 Bytes
/
Copy pathclack.asd
File metadata and controls
17 lines (17 loc) · 561 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(defsystem "clack"
:version "2.1.0"
:author "Eitaro Fukamachi"
:license "MIT"
:depends-on ("lack"
"lack-middleware-backtrace"
"lack-util"
"bordeaux-threads"
"usocket"
"alexandria"
"uiop")
:components ((:module "src"
:components
((:file "clack" :depends-on ("handler" "util"))
(:file "handler" :depends-on ("util"))
(:file "util"))))
:description "Web application environment for Common Lisp")