diff options
author | Matthew Hodgson <matthew@matrix.org> | 2017-12-05 21:44:25 +0000 |
---|---|---|
committer | Hubert Chathi <hubert@uhoreg.ca> | 2018-08-12 19:13:09 -0400 |
commit | 6b8c07abc293bd222051e769550753bc0fd6f667 (patch) | |
tree | 37f35d961ea98900f0eb3f8872a80bf4fbf6748d /synapse/storage/__init__.py | |
parent | interim WIP checkin; doesn't build yet (diff) | |
download | synapse-6b8c07abc293bd222051e769550753bc0fd6f667.tar.xz |
make it work and fix pep8
Diffstat (limited to 'synapse/storage/__init__.py')
-rw-r--r-- | synapse/storage/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/synapse/storage/__init__.py b/synapse/storage/__init__.py index 134e4a80f1..69cb28268a 100644 --- a/synapse/storage/__init__.py +++ b/synapse/storage/__init__.py @@ -30,6 +30,7 @@ from .appservice import ApplicationServiceStore, ApplicationServiceTransactionSt from .client_ips import ClientIpStore from .deviceinbox import DeviceInboxStore from .directory import DirectoryStore +from .e2e_room_keys import EndToEndRoomKeyStore from .end_to_end_keys import EndToEndKeyStore from .engines import PostgresEngine from .event_federation import EventFederationStore @@ -76,6 +77,7 @@ class DataStore(RoomMemberStore, RoomStore, ApplicationServiceTransactionStore, ReceiptsStore, EndToEndKeyStore, + EndToEndRoomKeyStore, SearchStore, TagsStore, AccountDataStore, |