from fastapi import FastAPI from fastapi.response import FileResponse app = FastAPI() @app.get("/download") def downlaod_file(): file_path ...
確定! 回上一頁