summaryrefslogtreecommitdiff
path: root/package.lisp
blob: aa68439a6eee177fa15c7e217616b124534707a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
;;;; package.lisp

(defpackage #:granolin
  (:use #:cl)
  (:export

   #:txn-id
   #:client
   #:homeserver
   #:handle-event

   #:getob
   #:event-content
   #:event-type
   #:event-id
   #:sender
   #:msg-type
   #:msg-body
   #:state-key
   #:prev-content

   #:timeline-event
   #:room-state-event
   #:invitation-event

   #:send
   #:fetch

   #:login
   #:sync

   #:start
   #:stop
   ))