Initial commit: WealthWise financial analytics platform
This commit is contained in:
26
backend/app/schemas/__init__.py
Normal file
26
backend/app/schemas/__init__.py
Normal file
@@ -0,0 +1,26 @@
|
||||
# Schemas package for Pydantic models
|
||||
|
||||
from app.schemas.token import TokenPayload, UserContext
|
||||
from app.schemas.user import (
|
||||
Token,
|
||||
TokenPayload as UserTokenPayload,
|
||||
UserBase,
|
||||
UserCreate,
|
||||
UserInDB,
|
||||
UserPublic,
|
||||
UserUpdate,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
# Token schemas (legacy Supabase support)
|
||||
"TokenPayload",
|
||||
"UserContext",
|
||||
# User schemas (new self-hosted auth)
|
||||
"Token",
|
||||
"UserTokenPayload",
|
||||
"UserBase",
|
||||
"UserCreate",
|
||||
"UserPublic",
|
||||
"UserInDB",
|
||||
"UserUpdate",
|
||||
]
|
||||
Reference in New Issue
Block a user