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.
|
from django.apps import AppConfig
|
|
|
|
|
|
class OauthConfig(AppConfig):
|
|
"""
|
|
OAuth应用配置类
|
|
用于配置Django应用中OAuth模块的元数据和行为
|
|
"""
|
|
|
|
# 指定Django应用的完整Python路径
|
|
# 这应该与应用目录名和settings.INSTALLED_APPS中的名称一致
|
|
name = 'oauth' |