10 lines
311 B
Python
10 lines
311 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class TradesConfig(AppConfig):
|
|
name = "trades"
|
|
|
|
def ready(self):
|
|
# This import registers the signal handlers defined in trades/signals.py,
|
|
# ensuring that denormalized field updates occur whenever related objects change.
|
|
import trades.signals
|