diff options
-rw-r--r-- | mulkcms-hunchentoot.lisp | 7 | ||||
-rw-r--r-- | package-hunchentoot.lisp | 4 | ||||
-rw-r--r-- | package.lisp | 8 |
3 files changed, 12 insertions, 7 deletions
diff --git a/mulkcms-hunchentoot.lisp b/mulkcms-hunchentoot.lisp index 78bee45..0767fe7 100644 --- a/mulkcms-hunchentoot.lisp +++ b/mulkcms-hunchentoot.lisp @@ -1,7 +1,2 @@ -(defpackage #:mulkcms - (:use #:common-lisp #:split-sequence #:alexandria #:cl-fad) - (:shadow #:copy-file #:copy-stream)) - -(in-package #:mulkcms) - +(in-package #:mulkcms-hunchentoot) diff --git a/package-hunchentoot.lisp b/package-hunchentoot.lisp new file mode 100644 index 0000000..1380237 --- /dev/null +++ b/package-hunchentoot.lisp @@ -0,0 +1,4 @@ +(cl:defpackage #:mulkcms-hunchentoot + (:use #:common-lisp #:hunchentoot #:cl-who #:cl-ppcre #:alexandria #:cl-fad + #:mulkcms) + (:shadow #:copy-file #:copy-stream)) diff --git a/package.lisp b/package.lisp index 77dbdcf..c034013 100644 --- a/package.lisp +++ b/package.lisp @@ -1,4 +1,10 @@ (cl:defpackage #:mulkcms (:use #:common-lisp #:split-sequence #:alexandria #:cl-fad #:cl-who #:cl-ppcre #:postmodern) - (:shadow #:copy-file #:copy-stream)) + (:shadow #:copy-file #:copy-stream) + (:export #:*base-uri* + #:*static-files* + #:*templates* + #:*server-address* + #:*server-port* + #:*site-name*)) |