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.
|
# zy: 评论应用配置模块 - 定义comments应用的配置信息
|
|
from django.apps import AppConfig
|
|
|
|
# zy: 评论应用配置类 - 继承自Django的AppConfig基类
|
|
class CommentsConfig(AppConfig):
|
|
# zy: 应用名称 - 指定Django内部使用的应用标识
|
|
# 这个名称应该与INSTALLED_APPS中的名称一致
|
|
name = 'comments'
|