This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# 马莹:导入Django的AppConfig类,用于配置应用的元数据和行为
from django.apps import AppConfig
# 马莹:定义名为ServermanagerConfig的应用配置类,继承自AppConfig
class ServermanagerConfig(AppConfig):
# 马莹:指定当前应用的名称为'servermanager'
# 马莹:这个名称会被Django用于识别应用,通常与应用的目录名一致
name = 'servermanager'