Changed dependency management to poetry (#1)
Co-authored-by: pptx704 <rafeedm.bhuiyan@gmail.com> Reviewed-on: #1
This commit is contained in:
@ -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"])
|
||||
|
||||
Reference in New Issue
Block a user