flow-pilot / backend /api /middleware.py
DevelopedBy-Siva
setup the initial app and deploy
83fe4f9
from fastapi import HTTPException
def ensure_owner(owner_id: str | None) -> None:
if not owner_id:
raise HTTPException(status_code=400, detail="owner_id is required")