summaryrefslogtreecommitdiff
path: root/package.lisp
blob: 7872d84660fa23aae9bc7e8a0eec153c60a3f3b3 (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
35
36
;;;; package.lisp

(defpackage #:granolin
  (: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 







   ))