|
@@ -2,8 +2,12 @@ from fastapi import FastAPI
|
|
from fastapi.responses import FileResponse
|
|
from fastapi.responses import FileResponse
|
|
|
|
|
|
|
|
|
|
|
|
+import os
|
|
|
|
+
|
|
|
|
+
|
|
app = FastAPI()
|
|
app = FastAPI()
|
|
|
|
|
|
-@app.get("downloadUpdate/{branch}/{version}/{os}/{file}")
|
|
|
|
|
|
+@app.get("/downloadUpdate/{branch}/{version}/{os}/{file}")
|
|
async def downloadUpdate(file: str, branch: str,version: str,os: str):
|
|
async def downloadUpdate(file: str, branch: str,version: str,os: str):
|
|
- return FileResponse(path=f'{branch}/{version}/{os}/{file.filename}', filename=file.filename, media_type='text/yml')
|
|
|
|
|
|
+ file_path = f'{branch}/{version}/{os}/'
|
|
|
|
+ return FileResponse(path=file_path+file, filename=file)
|