瀏覽代碼

ble-ai api route protected by oauth2

errorlogbug
Lorenzo Pollutri 1 月之前
父節點
當前提交
973e087489
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      app.py

+ 1
- 1
app.py 查看文件

@@ -192,7 +192,7 @@ async def get_documentation():
return get_swagger_ui_html(openapi_url="/openapi.json", title="docs")


@app.get("/ble-ai/infer", tags=["BLE-AI"])
@app.get("/ble-ai/infer", tags=["BLE-AI"], dependencies=[Depends(get_current_user)])
async def get_ble_ai_infer(mac: Optional[List[str]] = Query(default=None)):
path = config_env.BLE_AI_INFER_CSV
if not os.path.isfile(path):


Loading…
取消
儲存