Update some dependencies

This commit is contained in:
Tulir Asokan
2018-05-23 00:44:08 +03:00
parent 14903e0cdc
commit bedb9979a9
11 changed files with 195 additions and 116 deletions

View File

@ -14,6 +14,7 @@ type Event struct {
ID string `json:"event_id"` // The unique ID of this event
RoomID string `json:"room_id"` // The room the event was sent to. May be nil (e.g. for presence)
Content map[string]interface{} `json:"content"` // The JSON content of the event.
Redacts string `json:"redacts,omitempty"` // The event ID that was redacted if a m.room.redaction event
Unsigned Unsigned `json:"unsigned,omitempty"` // Unsigned content set by own homeserver.
}