This commit integrates the backend API for fetching and updating report data. It also includes a normalization function to handle data consistency between the API and local storage. Co-authored-by: anthonymuncher <anthonymuncher@gmail.com>
7 lines
134 B
Python
7 lines
134 B
Python
# app/schemas/user_schema.py
|
|
from pydantic import BaseModel, EmailStr
|
|
|
|
class UserCreate(BaseModel):
|
|
name: str
|
|
email: EmailStr
|