aboutsummaryrefslogtreecommitdiff
path: root/routes.asd
blob: 86e0dd0e19f23731f043a67cd148acd5983a5064 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
(asdf:defsystem #:routes
  :description "A library for handling routing of SCGI requests."
  :author "Thomas Albers Raviola <thomas@thomaslabs.org>"
  :maintainer "Thomas Albers Raviola <thomas@thomaslabs.org>"
  :license  "GPL-3"
  :version "1.0.0"
  :serial t
  :depends-on (:alexandria
               :split-sequence
               :usocket-server)
  :pathname "src"
  :components ((:file "package")
               (:file "routes")))