浏览代码

client.py

alexis 1 年之前
父节点
当前提交
e4079244a5
共有 1 个文件被更改,包括 9 次插入0 次删除
  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')