Browse Source

client.py

alexis 1 năm trước cách đây
mục cha
commit
e4079244a5
1 tập tin đã thay đổi với 9 bổ sung0 xóa
  1. 9 0
      client.py

+ 9 - 0
client.py

@@ -0,0 +1,9 @@
+from fastapi import FastAPI
+from fastapi.responses import FileResponse
+
+
+app = FastAPI()
+
+@app.get("downloadUpdate/{branch}/{version}/{os}/{file}")
+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')