From ac46b5527e252305ea77a84a332917d835508489 Mon Sep 17 00:00:00 2001 From: "Khoa.vo" Date: Wed, 24 Dec 2025 12:46:09 +0700 Subject: [PATCH] HOTFIX: Add missing Request import to fix Docker crash --- backend/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/main.py b/backend/main.py index 099ee2f..cb68ade 100644 --- a/backend/main.py +++ b/backend/main.py @@ -2,7 +2,7 @@ StreamFlow Backend - FastAPI Application High-performance video streaming with yt-dlp integration """ -from fastapi import FastAPI, HTTPException, Depends, Query +from fastapi import FastAPI, HTTPException, Depends, Query, Request from fastapi.middleware.cors import CORSMiddleware from pydantic import BaseModel, HttpUrl from typing import Optional, Dict, List