Initial commit

This commit is contained in:
2020-11-23 19:29:42 -08:00
commit 8b30811ab5
5 changed files with 173 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
;;;; 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))