From ead4a6dd4be3716619795af8275e099aa9536141 Mon Sep 17 00:00:00 2001 From: Linus Vogel Date: Sun, 21 Dec 2025 16:42:50 +0100 Subject: [PATCH] testing the url --- pillar_tool/__init__.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pillar_tool/__init__.py b/pillar_tool/__init__.py index c1a17db..4e6d67e 100644 --- a/pillar_tool/__init__.py +++ b/pillar_tool/__init__.py @@ -17,4 +17,9 @@ app.add_middleware(AuthenticationMiddleware, backend=BasicAuthBackend(), on_erro @app.get("/") async def root(): - return {"message": "Hello World"} \ No newline at end of file + return {"message": "Hello World"} + +@app.get("/pillar/") +async def pillar(param: str): + print(param) + return None