12 lines
261 B
Python
12 lines
261 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class CoreConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'core'
|
|
|
|
def ready(self):
|
|
"""应用启动时执行"""
|
|
# 导入Admin扩展
|
|
import core.admin_extended
|