You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DjangoBlog-Maintenance-Anal.../src/servermanager/apps.py

23 lines
643 B

#yyd:
# coding: utf-8
# 导入 Django 的应用配置基类
from django.apps import AppConfig
class ServermanagerConfig(AppConfig):
"""
Servermanager 应用配置类
-------------------------------------
用于配置 servermanager 应用的元数据和初始化行为。
主要功能:
1. 定义应用的基本配置信息;
2. 在 Django 启动时进行应用级初始化;
3. 提供应用的可读名称和默认主键类型等可选设置。
"""
# 应用在项目中的 Python 路径(必填项)
# 该名称必须与 settings.INSTALLED_APPS 中一致。
name = 'servermanager'