mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
♻️ refactor imports
This commit is contained in:
parent
976b730de5
commit
3d542b0055
9 changed files with 22 additions and 22 deletions
|
|
@ -1,8 +1,8 @@
|
|||
from fastapi import Depends, FastAPI, APIRouter
|
||||
from fastapi.security import OAuth2PasswordBearer, OAuth2PasswordRequestForm
|
||||
from pydantic import BaseModel
|
||||
from ..services.auth import *
|
||||
from ..services.users import *
|
||||
from src.services.auth import *
|
||||
from src.services.users import *
|
||||
|
||||
oauth2_scheme = OAuth2PasswordBearer(tokenUrl="/api/auth/token")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue