aboutsummaryrefslogtreecommitdiff
path: root/weekend.asd
blob: 6e7f833da407fb42920bb3604e87f74db9b37882 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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")
               ))