mirror of
https://github.com/Hopiu/django-imagekit.git
synced 2026-03-17 05:40:25 +00:00
6 lines
156 B
Python
6 lines
156 B
Python
from django.dispatch import Signal
|
|
|
|
before_access = Signal()
|
|
source_created = Signal(providing_args=[])
|
|
source_changed = Signal()
|
|
source_deleted = Signal()
|