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.
djangoBlogStudy/src/comments/apps.py

10 lines
293 B

# 导入 Django 应用配置基类
from django.apps import AppConfig
# 定义 comments 应用的配置类
class CommentsConfig(AppConfig):
# 指定该配置对应的 Django 应用的完整 Python 路径
# 即当前应用的包名(位于 INSTALLED_APPS 中)
name = 'comments'