Update app.py
Browse files
app.py
CHANGED
@@ -32,7 +32,7 @@ ACCESS_TOKEN_EXPIRE_MINUTES = 30
|
|
32 |
# FastAPI and OAuth setup
|
33 |
app = FastAPI()
|
34 |
app.add_middleware(SessionMiddleware, secret_key=SECRET_KEY)
|
35 |
-
oauth = OAuth(
|
36 |
|
37 |
# Password context
|
38 |
pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto")
|
|
|
32 |
# FastAPI and OAuth setup
|
33 |
app = FastAPI()
|
34 |
app.add_middleware(SessionMiddleware, secret_key=SECRET_KEY)
|
35 |
+
oauth = OAuth()
|
36 |
|
37 |
# Password context
|
38 |
pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto")
|