Spaces:
Sleeping
Sleeping
File size: 226 Bytes
0df7489 | 1 2 3 4 5 6 7 | from fastapi import Request, HTTPException
async def api_guard(request: Request, call_next):
if "x-api-key" not in request.headers:
raise HTTPException(401, "API key required")
return await call_next(request)
|