# Interface_App下的apps.py
from django.apps import AppConfig
class InterfaceAppConfig(AppConfig):
# app 名称
name = 'Interface_App'
# verbose_name 你想要显示的名称
verbose_name = "接口管理"
# Interface_Manage下的apps.py
from django.apps import AppConfig
class InterfaceManageConfig(AppConfig):
name = 'Interface_Manage'
verbose_name = "权限管理"
# Interface_App下的__init__.py
default_app_config = 'Interface_App.apps.InterfaceAppConfig'
# Interface_Manage下的__init__.py
default_app_config = "Interface_Manage.apps.InterfaceManageConfig"