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.
tentest/doc/DjangoBlog/comments/apps.py

10 lines
430 B

This file contains ambiguous Unicode characters!

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.

# FRR该模块定义了Django应用"comments"的配置类,
# 用于告诉Django如何识别和配置该应用是Django应用的核心配置文件之一。
from django.apps import AppConfig
# FRR评论应用(comments)的配置类继承自Django的AppConfig基类
class CommentsConfig(AppConfig):
# FRR应用的名称必须与应用目录名一致Django通过该名称识别应用
name = 'comments'