Generateurv2/backend/env/lib/python3.10/site-packages/django_cleanup/apps.py
2022-06-24 17:14:37 +02:00

16 lines
324 B
Python

'''
AppConfig for django-cleanup, prepare the cache and connect signal handlers
'''
from django.apps import AppConfig
from . import cache, handlers
class CleanupConfig(AppConfig):
name = 'django_cleanup'
verbose_name = 'Django Cleanup'
def ready(self):
cache.prepare()
handlers.connect()