backplane-server/package.lisp
2020-11-24 11:26:20 -08:00

22 lines
551 B
Common Lisp

;;;; package.lisp
(defpackage #:backplane-server
(:use #:cl)
(:import-from #:arrows
#:->
#:some->)
(:import-from #:alexandria
#:if-let)
(:import-from #:cl-json
#:decode-json-from-string
#:encode-json-to-string)
(:export #:make-success
#:make-error
#:success-p
#:error-p
#:parse-message
#:handle-message
#:backplane-connect
#:with-backplane))