summaryrefslogtreecommitdiff
path: root/package.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'package.lisp')
-rw-r--r--package.lisp34
1 files changed, 33 insertions, 1 deletions
diff --git a/package.lisp b/package.lisp
index fce085a..7872d84 100644
--- a/package.lisp
+++ b/package.lisp
@@ -1,4 +1,36 @@
;;;; package.lisp
(defpackage #:granolin
- (:use #:cl))
+ (:use #:cl)
+ (:export
+
+ #:txn-id
+ #:client
+ #:homeserver
+ #:handle-timeline-event
+ #:handle-room-state-event
+ #:handle-invitation-event
+
+ #:getob
+ #:event-content
+ #:event-type
+ #:event-id
+ #:sender
+ #:msg-type
+ #:msg-body
+ #:state-key
+ #:prev-content
+
+ #:send
+ #:fetch
+
+ #:login
+ #:sync
+
+
+
+
+
+
+
+ ))