HOTFIX: Add missing Request import to fix Docker crash

This commit is contained in:
Khoa.vo 2025-12-24 12:46:09 +07:00
parent 39f6f72ce8
commit ac46b5527e

View file

@ -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