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.
psrGROUP/src/DjangoBlog-master/comments/apps.py

6 lines
254 B

#syy 该模块定义了 comments 应用的配置类,用于 Django 项目识别和管理该应用
from django.apps import AppConfig
#syy comments 应用的配置类,继承自 Django 的 AppConfig
class CommentsConfig(AppConfig):
name = 'comments'