mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-03-31 12:00:26 +00:00
6 lines
165 B
Python
6 lines
165 B
Python
from django.dispatch import Signal
|
|
|
|
before_access = Signal()
|
|
cacheable_created = Signal(providing_args=[])
|
|
cacheable_changed = Signal()
|
|
cacheable_deleted = Signal()
|