Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
raghavFam committed Dec 23, 2024
1 parent 2fa0bff commit dc60642
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions cacheops/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
__version__ = '7.1'
VERSION = tuple(map(int, __version__.split('.')))

from django.apps import AppConfig
from .simple import * # noqa
from .query import * # noqa
from .invalidation import * # noqa
from .reaper import * # noqa
from .templatetags.cacheops import * # noqa
from .transaction import * # noqa

class CacheopsConfig(AppConfig):
name = 'cacheops'

def ready(self):
install_cacheops()
install_cacheops_transaction_support()

default_app_config = 'cacheops.CacheopsConfig'

0 comments on commit dc60642

Please sign in to comment.