9 lines
261 B
Python
Executable File
9 lines
261 B
Python
Executable File
from django.apps import AppConfig
|
|
|
|
class WebadminConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "WebAdmin"
|
|
|
|
def ready(self):
|
|
import WebAdmin.signals # 确保在应用启动时加载信号处理程序
|