ADD VOLUME_MOUNT

master
Sebastian Serfling 2023-08-21 13:49:08 +02:00
parent b909a09a3e
commit b81ab68cea
1 changed files with 1 additions and 0 deletions

View File

@ -89,6 +89,7 @@ async def getclient(get: CL.CL_GET_CLIENT,api_key: APIKey = Depends(auth.get_api
@app.post("/info/addclient") @app.post("/info/addclient")
async def addclient(addclient: CL.CL_ADD_CLIENT,api_key: APIKey = Depends(auth.get_api_key)): async def addclient(addclient: CL.CL_ADD_CLIENT,api_key: APIKey = Depends(auth.get_api_key)):
print(addclient.query)
database(addclient.query,addclient.database,"") database(addclient.query,addclient.database,"")
return f"Client wurde zur Datenbank hinzugefügt" return f"Client wurde zur Datenbank hinzugefügt"