distribute-coin/distribute-coin.asd
2019-05-24 00:18:42 -05:00

16 lines
494 B
Common Lisp
Executable File

(defsystem "distribute-coin"
:version "0.1"
:author "Jaidyn Ann <jadedctrl@teknik.io>"
:license "Cooperative Software License"
:depends-on ("hunchentoot" "translate" "html-template" "cl-ipfs-api2")
:components ((:module "src"
:components
((:file "package")
(:file "util")
(:file "sanitize")
(:file "handle-requests")
(:file "main"))))
:description
"An IPFS-backed file-uploading & URL-shortening website.")