aboutsummaryrefslogtreecommitdiffhomepage
path: root/package.lisp
blob: 723bbb5ed7ee62bc51f7d1b990148c39699c93bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
;;;; package.lisp

(defpackage #:vampire
  (:use #:cl #:clog #:binding-arrows)
  (:import-from #:bknr.datastore
                #:with-transaction
                #:store-object
                #:persistent-class
                #:store-objects-with-class
                #:store-object-id)
  (:import-from #:bknr.indices
                #:string-unique-index
                #:hash-index
                #:hash-list-index)
  (:import-from #:alexandria-2
                #:with-gensyms
                #:when-let
                #:when-let*
                #:if-let)
  (:import-from #:defclass-std #:defclass/std))