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

11
app/routers/auth.py Normal file
View File

@ -0,0 +1,11 @@
from fastapi import APIRouter, Depends, status
from sqlalchemy.orm import Session
from app import database, schemas
from .. import schemas
from ..database import get_db
from ..repositories import auth
from ..security import get_user
router = APIRouter(prefix="", tags=["auth"])