Compare commits

...

2 Commits

Author SHA1 Message Date
Sebastian Serfling 86af68bbd0 ADD VOLUME_MOUNT 2023-08-21 14:04:55 +02:00
Sebastian Serfling 19cf1339f5 ADD VOLUME_MOUNT 2023-08-21 14:00:22 +02:00
1 changed files with 2 additions and 1 deletions

View File

@ -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
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)):