16 lines
282 B
Common Lisp
16 lines
282 B
Common Lisp
|
(defpackage :mblog
|
||
|
(:use
|
||
|
:common-lisp
|
||
|
:mime4cl
|
||
|
:closure-html
|
||
|
:who
|
||
|
:uiop)
|
||
|
(:shadow :with-html-output) ; conflict between closure-html and who
|
||
|
(:import-from
|
||
|
:alexandria
|
||
|
:when-let*
|
||
|
:when-let
|
||
|
:starts-with-subseq
|
||
|
:ends-with-subseq)
|
||
|
(:export :main))
|