Changed dependency management to poetry

This commit is contained in:
pptx704
2025-06-24 06:55:47 +03:00
parent 52aa93d67c
commit 90ae2ea8e4
17 changed files with 2034 additions and 54 deletions

View File

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