11 lines
249 B
Python
11 lines
249 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class OrdersConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'orders'
|
|
|
|
def ready(self):
|
|
# 导入信号处理,确保信号被注册
|
|
import orders.signals
|