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.
|
#shw 导入Django的应用配置基类
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class AccountsConfig(AppConfig):
|
|
#shw 这是accounts应用的配置类。
|
|
#shw 它用于定义该应用的各种元数据和行为。
|
|
|
|
#shw 指定这个配置类所属的应用的完整Python路径。
|
|
#shw Django通过这个name来找到并加载这个应用。
|
|
name = 'accounts'
|