mirror of
https://github.com/yyhuni/xingrin.git
synced 2026-01-31 11:46:16 +08:00
11 lines
253 B
Python
11 lines
253 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class CommonConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.common' # 因为在 apps/ 目录下
|
|
|
|
def ready(self):
|
|
"""应用就绪时调用"""
|
|
pass
|