9 lines
129 B
Python
9 lines
129 B
Python
|
|
"""
|
||
|
|
horilla/signals.py
|
||
|
|
"""
|
||
|
|
|
||
|
|
from django.dispatch import Signal, receiver
|
||
|
|
|
||
|
|
pre_bulk_update = Signal()
|
||
|
|
post_bulk_update = Signal()
|