7 lines
166 B
Python
7 lines
166 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.dispatch import Signal
|
|
|
|
post_initial_setup = Signal(use_caching=True)
|
|
perform_upgrade = Signal(use_caching=True)
|