MAWB commited on
Commit
58f817d
·
verified ·
1 Parent(s): d277fdc

Update api/dependencies.py

Browse files
Files changed (1) hide show
  1. 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 src.services.auth import verify_token
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: