dotfiles/sbcl/.quicklisp/dists/quicklisp/software/quickproject-1.4.1/package.lisp

24 lines
728 B
Common Lisp
Raw Normal View History

2020-02-25 06:06:49 -05:00
;;;; package.lisp
(defpackage #:quickproject
(:documentation "The Quickproject package.")
(:use #:cl)
(:export #:make-project
#:*after-make-project-hooks*
#:*author*
#:*license*
#:*template-directory*
#:*include-copyright*
#:default-template-parameters
#:*template-parameter-functions*)
(:shadowing-import-from #:html-template
#:fill-and-print-template
#:*template-start-marker*
#:*template-end-marker*)
(:shadowing-import-from #:cl-fad
#:pathname-as-directory
#:walk-directory))
(in-package #:quickproject)