-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.lisp
26 lines (23 loc) · 852 Bytes
/
package.lisp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
;;;; 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*
#:target-exists)
(: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
#:file-exists-p
#:delete-directory-and-files))
(in-package #:quickproject)