Implement event format v2

This commit is contained in:
Erik Johnston 2019-01-29 17:26:24 +00:00
parent cc2d650ef7
commit 84af577356
4 changed files with 110 additions and 21 deletions

View file

@ -126,10 +126,12 @@ class EventFormatVersions(object):
independently from the room version.
"""
V1 = 1
V2 = 2
KNOWN_EVENT_FORMAT_VERSIONS = {
EventFormatVersions.V1,
EventFormatVersions.V2,
}