mirror of
https://github.com/yyhuni/xingrin.git
synced 2026-01-31 19:53:11 +08:00
12 lines
380 B
Python
12 lines
380 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class ScanConfig(AppConfig):
|
|
"""扫描应用配置类"""
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.scan'
|
|
|
|
def ready(self):
|
|
"""应用启动时注册信号接收器"""
|
|
# 导入接收器模块以注册信号处理函数
|
|
from apps.scan.notifications import receivers # noqa: F401 |