mirror of
https://github.com/yyhuni/xingrin.git
synced 2026-01-31 11:46:16 +08:00
11 lines
261 B
Python
11 lines
261 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class AssetConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.asset'
|
|
|
|
def ready(self):
|
|
# 导入所有模型以确保Django发现并注册
|
|
from . import models
|