testing the url

This commit is contained in:
Linus Vogel 2025-12-21 16:42:50 +01:00
parent e1e89a2440
commit ead4a6dd4b

View File

@ -18,3 +18,8 @@ app.add_middleware(AuthenticationMiddleware, backend=BasicAuthBackend(), on_erro
@app.get("/") @app.get("/")
async def root(): async def root():
return {"message": "Hello World"} return {"message": "Hello World"}
@app.get("/pillar/<param>")
async def pillar(param: str):
print(param)
return None