diff options
author | Colin Okay <colin@cicadas.surf> | 2022-10-23 11:17:52 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-10-23 11:17:52 -0500 |
commit | 185cad97489965f1f7e3bf274204e780333fc0e8 (patch) | |
tree | 7b3e4d10cdc439d7dbaa121a5a104cb4a2687f23 | |
parent | f6bde8b5b44794520a5c65d97e1770a3e8527767 (diff) |
Add: imports
-rw-r--r-- | package.lisp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package.lisp b/package.lisp index 723bbb5..ed09c5f 100644 --- a/package.lisp +++ b/package.lisp @@ -1,13 +1,14 @@ ;;;; package.lisp (defpackage #:vampire - (:use #:cl #:clog #:binding-arrows) + (:use #:cl #:clog) (:import-from #:bknr.datastore #:with-transaction #:store-object #:persistent-class #:store-objects-with-class - #:store-object-id) + #:store-object-id + #:make-blob-from-file) (:import-from #:bknr.indices #:string-unique-index #:hash-index |