mirror of
https://github.com/vale981/lack
synced 2025-03-04 08:51:41 -05:00
12 lines
285 B
Common Lisp
12 lines
285 B
Common Lisp
(in-package :cl-user)
|
|
(defpackage :lack-response-asd
|
|
(:use :cl :asdf))
|
|
(in-package :lack-response-asd)
|
|
|
|
(defsystem lack-response
|
|
:version "0.1"
|
|
:author "Eitaro Fukamachi"
|
|
:license "LLGPL"
|
|
:depends-on (:quri
|
|
:local-time)
|
|
:components ((:file "src/response")))
|