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