mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2025-08-15 19:30:47 +08:00
15 lines
239 B
Python
15 lines
239 B
Python
from beanie import PydanticObjectId
|
|
from fastapi_users import schemas
|
|
|
|
|
|
class UserRead(schemas.BaseUser[PydanticObjectId]):
|
|
pass
|
|
|
|
|
|
class UserCreate(schemas.BaseUserCreate):
|
|
pass
|
|
|
|
|
|
class UserUpdate(schemas.BaseUserUpdate):
|
|
pass
|