diff options
author | Erik Johnston <erik@matrix.org> | 2015-08-11 17:59:32 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2015-08-11 18:00:59 +0100 |
commit | 2df8dd9b37f26e3ad0d3647a1e78804a85d48c0c (patch) | |
tree | 3c9849e4645fae998f01b7ba89303793d209ff14 /synapse/storage/state.py | |
parent | Comments (diff) | |
download | synapse-2df8dd9b37f26e3ad0d3647a1e78804a85d48c0c.tar.xz |
Move all the caches into their own package, synapse.util.caches
Diffstat (limited to 'synapse/storage/state.py')
-rw-r--r-- | synapse/storage/state.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/synapse/storage/state.py b/synapse/storage/state.py index ea5fa9de7b..79c3b82d9f 100644 --- a/synapse/storage/state.py +++ b/synapse/storage/state.py @@ -13,7 +13,10 @@ # See the License for the specific language governing permissions and # limitations under the License. -from ._base import SQLBaseStore, cached, cachedInlineCallbacks, cachedList +from ._base import SQLBaseStore +from synapse.util.caches.descriptors import ( + cached, cachedInlineCallbacks, cachedList +) from twisted.internet import defer |