blob: 459fee347c22bb029c4128ff9c1840061fce1da8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
;;;; lazybones.asd
(asdf:defsystem #:lazybones
:description "http route handling"
:author "Colin Okay <cbeok@protonmail.com>"
:license "AGPLv3"
:version "0.0.1"
:serial t
:depends-on (#:clack
#:jonathan
#:alexandria
#:split-sequence
#:do-urlencode
#:arrows
#:parzival
#:uiop
#:cl-fad)
:components ((:file "package")
(:file "lazybones")
(:file "fs-serve")
(:file "decoders")))
|