mirror of
https://github.com/fastapi-practices/fastapi-best-architecture.git
synced 2026-09-21 13:12:24 +00:00
11 lines
184 B
Python
11 lines
184 B
Python
from backend.common.enums import StrEnum
|
|
|
|
|
|
class ConfigType(StrEnum):
|
|
"""配置类型"""
|
|
|
|
ai = 'AI'
|
|
email = 'EMAIL'
|
|
user_security = 'USER_SECURITY'
|
|
login = 'LOGIN'
|