blob: b069148e70668729609ff8f3f425eaa18b26e9cc (
plain)
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
26
27
28
29
30
|
;;;; package.lisp
(defpackage #:vampire
(:use #:cl)
(:local-nicknames
(#:db #:bknr.datastore)
(#:wknd #:weekend)
(#:a #:alexandria-2)
(#:zippy #:org.shirakumo.zippy ))
(:import-from #:flatbind #:do>)
(:import-from #:bknr.datastore
#:with-transaction
#:store-object
#:persistent-class
#:store-objects-with-class
#:store-object-id
#:store-object-with-id)
(:import-from #:bknr.indices
#:string-unique-index
#:hash-index
#:hash-list-index)
(:import-from #:derrida #:with-plist)
(:import-from #:alexandria-2
#:with-gensyms
#:when-let
#:when-let*
#:if-let
#:subseq*)
(:import-from #:defclass-std #:defclass/std)
(:import-from #:spinneret #:with-html #:with-html-string))
|