fix: refactor auth + fix types

This commit is contained in:
swve 2022-11-05 18:36:03 +01:00
parent 34e0413ee7
commit b1ed0185f9
11 changed files with 11 additions and 11 deletions

View file

@ -1,7 +1,7 @@
from fastapi import Depends, FastAPI, APIRouter
from fastapi.security import OAuth2PasswordBearer, OAuth2PasswordRequestForm
from pydantic import BaseModel
from src.services.auth import *
from src.dependencies.auth import *
from src.services.users import *