14 lines
303 B
Common Lisp
14 lines
303 B
Common Lisp
|
;;;; package.lisp
|
||
|
|
||
|
(defpackage #:dns-backplane
|
||
|
(:use #:cl)
|
||
|
(:import-from #:arrows
|
||
|
#:->
|
||
|
#:some->)
|
||
|
(:import-from #:alexandria
|
||
|
#:if-let)
|
||
|
(:import-from #:postmodern
|
||
|
#:get-dao
|
||
|
#:update-dao
|
||
|
#:insert-dao))
|