From 8a78820e96a45b3ea282e3e1f455d23590b4e296 Mon Sep 17 00:00:00 2001 From: Sebastian Serfling Date: Mon, 21 Aug 2023 10:45:41 +0200 Subject: [PATCH] ADD VOLUME_MOUNT --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index b5f6cc4..1e916b7 100644 --- a/main.py +++ b/main.py @@ -55,7 +55,7 @@ app = FastAPI() async def notify(): return database(f"SELECT * FROM Notifications", "Stines-GmbH","") -@app.get("gettime") +@app.get("/gettime") async def gettime(api_key: APIKey = Depends(auth.get_api_key)): return f"Current Time is {datetime.now()}"