mirror of
https://github.com/fastapi-practices/fastapi-best-architecture.git
synced 2026-09-21 05:02:49 +00:00
16 lines
265 B
Python
16 lines
265 B
Python
from backend.common.enums import StrEnum
|
|
|
|
|
|
class UserSocialType(StrEnum):
|
|
"""用户社交类型"""
|
|
|
|
github = 'Github'
|
|
google = 'Google'
|
|
|
|
|
|
class UserSocialAuthType(StrEnum):
|
|
"""用户社交授权类型"""
|
|
|
|
login = 'login'
|
|
binding = 'binding'
|