Initial commit

This commit is contained in:
2025-07-03 05:37:33 +00:00
commit bcb64faf74
27 changed files with 2599 additions and 0 deletions

17
app/schemas.py Normal file
View File

@ -0,0 +1,17 @@
import datetime
import enum
import uuid
from typing import List, Optional
from pydantic import BaseModel, EmailStr
class BaseResponse(BaseModel):
message: str
class User(BaseModel):
id: uuid.UUID
class Config:
orm_mode = True