mirror of
https://github.com/vale981/lack
synced 2025-03-04 08:51:41 -05:00
15 lines
390 B
Common Lisp
15 lines
390 B
Common Lisp
(in-package :cl-user)
|
|
(defpackage :lack-request-asd
|
|
(:use :cl :asdf))
|
|
(in-package :lack-request-asd)
|
|
|
|
(defsystem lack-request
|
|
:version "0.1"
|
|
:author "Eitaro Fukamachi"
|
|
:license "LLGPL"
|
|
:depends-on (:quri
|
|
:http-body
|
|
:circular-streams
|
|
:cl-ppcre)
|
|
:components ((:file "src/request"))
|
|
:in-order-to ((test-op (test-op t-lack-request))))
|