aboutsummaryrefslogtreecommitdiff
path: root/weekend.asd
diff options
context:
space:
mode:
Diffstat (limited to 'weekend.asd')
-rw-r--r--weekend.asd15
1 files changed, 15 insertions, 0 deletions
diff --git a/weekend.asd b/weekend.asd
new file mode 100644
index 0000000..6e7f833
--- /dev/null
+++ b/weekend.asd
@@ -0,0 +1,15 @@
+;;;; weekend.asd
+
+(asdf:defsystem #:weekend
+ :description "A Metaclass and Protocol for Defining Webservers."
+ :author "colin <colin@cicadas.surf>"
+ :license "AGPLv3.0"
+ :version "0.0.1"
+ :depends-on (#:hunchentoot #:closer-mop #:alexandria #:flatbind)
+ :pathname "src/"
+ :serial t
+ :components ((:file "package")
+ (:file "protocol")
+ (:file "endpoint")
+ ; (:file "server")
+ ))