9 lines
221 B
Python
9 lines
221 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.
|
|
import trades.signals
|