7577a89284
Change-Id: I7be8d8b7d12bb194712aa26f3ddad74340357779 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5070 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
22 lines
440 B
Common Lisp
22 lines
440 B
Common Lisp
(defpackage :maildir
|
|
(:use :common-lisp)
|
|
(:shadow :list)
|
|
(:export :list)
|
|
(:documentation
|
|
"Very incomplete package for dealing with maildir(5)."))
|
|
|
|
(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))
|