mirror of
https://github.com/vale981/lack
synced 2025-03-05 17:31:39 -05:00
17 lines
499 B
Common Lisp
17 lines
499 B
Common Lisp
(in-package :cl-user)
|
|
(defpackage :lack-middleware-static-asd
|
|
(:use :cl :asdf))
|
|
(in-package :lack-middleware-static-asd)
|
|
|
|
(defsystem lack-middleware-static
|
|
:version "0.1"
|
|
:author "Eitaro Fukamachi"
|
|
:license "LLGPL"
|
|
:depends-on (:trivial-mimes
|
|
:local-time
|
|
:cl-fad
|
|
:alexandria)
|
|
:components ((:module "src"
|
|
:components
|
|
((:file "middleware/static" :depends-on ("app/file"))
|
|
(:file "app/file")))))
|