We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fa0bff commit dc60642Copy full SHA for dc60642
cacheops/__init__.py
@@ -1,8 +1,19 @@
1
__version__ = '7.1'
2
VERSION = tuple(map(int, __version__.split('.')))
3
4
+from django.apps import AppConfig
5
from .simple import * # noqa
6
from .query import * # noqa
7
from .invalidation import * # noqa
8
from .reaper import * # noqa
9
from .templatetags.cacheops import * # noqa
10
+from .transaction import * # noqa
11
+
12
+class CacheopsConfig(AppConfig):
13
+ name = 'cacheops'
14
15
+ def ready(self):
16
+ install_cacheops()
17
+ install_cacheops_transaction_support()
18
19
+default_app_config = 'cacheops.CacheopsConfig'
0 commit comments