Update api/dependencies.py
Browse files- api/dependencies.py +1 -1
api/dependencies.py
CHANGED
|
@@ -4,7 +4,7 @@ FastAPI dependencies for authentication and authorization.
|
|
| 4 |
Per @specs/001-auth-api-bridge/research.md - FastAPI Dependencies pattern
|
| 5 |
"""
|
| 6 |
from fastapi import Depends, HTTPException, Request, status
|
| 7 |
-
from
|
| 8 |
|
| 9 |
|
| 10 |
async def get_current_user(request: Request) -> str:
|
|
|
|
| 4 |
Per @specs/001-auth-api-bridge/research.md - FastAPI Dependencies pattern
|
| 5 |
"""
|
| 6 |
from fastapi import Depends, HTTPException, Request, status
|
| 7 |
+
from services.auth import verify_token
|
| 8 |
|
| 9 |
|
| 10 |
async def get_current_user(request: Request) -> str:
|