blob: a58aad27d11b0cfa6334215855886b69d0916136 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
(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))
|