summary refs log tree commit diff
path: root/synapse/storage/__init__.py
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2015-07-07 10:55:31 +0100
committerErik Johnston <erik@matrix.org>2015-07-07 10:55:31 +0100
commit716e42693354553ee2878e3a8df6811226e91130 (patch)
tree0e18cb4c32951f98fdad56a24d48c707ec7f5446 /synapse/storage/__init__.py
parentAdd a ReceiptServlet (diff)
downloadsynapse-716e42693354553ee2878e3a8df6811226e91130.tar.xz
Fix various typos
Diffstat (limited to 'synapse/storage/__init__.py')
-rw-r--r--synapse/storage/__init__.py3
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):