|
|
@ -1,4 +1,5 @@ |
|
|
|
from datetime import datetime, timedelta, timezone |
|
|
|
from functools import lru_cache |
|
|
|
|
|
|
|
import jwt |
|
|
|
from fastapi import Depends, FastAPI, HTTPException, Security, status |
|
|
@ -67,6 +68,7 @@ oauth2_scheme = OAuth2PasswordBearer( |
|
|
|
app = FastAPI() |
|
|
|
|
|
|
|
|
|
|
|
@lru_cache |
|
|
|
def verify_password(plain_password, hashed_password): |
|
|
|
return pwd_context.verify(plain_password, hashed_password) |
|
|
|
|
|
|
|