aboutsummaryrefslogtreecommitdiff
path: root/routes.asd
diff options
context:
space:
mode:
authorThomas Albers Raviola <thomas@thomaslabs.org>2024-05-03 20:04:14 +0200
committerThomas Albers Raviola <thomas@thomaslabs.org>2024-05-03 20:04:14 +0200
commit7497f74f5eed855e8114f82860faccfc8935b5cc (patch)
treec92444ed7daa80daa8838d46b6a9ea9679f510dc /routes.asd
* Initial commit
Diffstat (limited to 'routes.asd')
-rw-r--r--routes.asd13
1 files changed, 13 insertions, 0 deletions
diff --git a/routes.asd b/routes.asd
new file mode 100644
index 0000000..86e0dd0
--- /dev/null
+++ b/routes.asd
@@ -0,0 +1,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")))