lack/lack-handler-hunchentoot.asd
Eitaro Fukamachi 6718359cba Initial commit.
2015-03-07 03:00:04 +09:00

15 lines
444 B
Common Lisp

(in-package :cl-user)
(defpackage :lack-handler-hunchentoot-asd
(:use :cl :asdf))
(in-package :lack-handler-hunchentoot-asd)
(defsystem lack-handler-hunchentoot
:version "0.1"
:author "Eitaro Fukamachi"
:license "LLGPL"
:depends-on (:hunchentoot
:flexi-streams
:alexandria
:split-sequence)
:components ((:file "src/handler/hunchentoot"))
:description "Lack handler for Hunchentoot.")