From 86af68bbd0506183a18f91568f5ec73752473471 Mon Sep 17 00:00:00 2001 From: Sebastian Serfling Date: Mon, 21 Aug 2023 14:04:55 +0200 Subject: [PATCH] ADD VOLUME_MOUNT --- main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index bff946b..7bbe994 100644 --- a/main.py +++ b/main.py @@ -77,7 +77,8 @@ async def getvolume(get: CL.CL_GET_VOLUMES,api_key: APIKey = Depends(auth.get_ap if not result: return False else: - return result[0] + for i in result: + return f"{id:1,result[0][0]}" @app.post("/info/getclient") async def getclient(get: CL.CL_GET_CLIENT,api_key: APIKey = Depends(auth.get_api_key)):