aboutsummaryrefslogtreecommitdiff
path: root/weekend.asd
blob: c844f7bfe2c01543e245092f4cf9d9e23dd1b30b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
;;;; weekend.asd

(asdf:defsystem #:weekend
  :description "A Metaclass and Protocol for Defining Webservers on Hunchentoot."
  :author "colin <colin@cicadas.surf>"
  :license  "AGPLv3.0"
  :version "0.0.1"
  :depends-on (#:hunchentoot #:closer-mop #:alexandria #:flatbind #:argot #:serapeum)
  :pathname "src/"
  :serial t
  :components ((:file "package")
               (:file "protocol")
               (:file "endpoint")
               (:file "defendpoint")))