diff options
author | Erik Johnston <erik@matrix.org> | 2015-07-07 10:55:31 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-07-07 10:55:31 +0100 |
commit | 716e42693354553ee2878e3a8df6811226e91130 (patch) | |
tree | 0e18cb4c32951f98fdad56a24d48c707ec7f5446 /synapse/storage/__init__.py | |
parent | Add a ReceiptServlet (diff) | |
download | synapse-716e42693354553ee2878e3a8df6811226e91130.tar.xz |
Fix various typos
Diffstat (limited to 'synapse/storage/__init__.py')
-rw-r--r-- | synapse/storage/__init__.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/synapse/storage/__init__.py b/synapse/storage/__init__.py index 275598adda..2bc88a7954 100644 --- a/synapse/storage/__init__.py +++ b/synapse/storage/__init__.py @@ -38,6 +38,8 @@ from .state import StateStore from .signatures import SignatureStore from .filtering import FilteringStore +from .receipts import ReceiptsStore + import fnmatch import imp @@ -74,6 +76,7 @@ class DataStore(RoomMemberStore, RoomStore, PushRuleStore, ApplicationServiceTransactionStore, EventsStore, + ReceiptsStore, ): def __init__(self, hs): |