diff --git a/app/main.py b/app/main.py index e0f3268..b23de22 100644 --- a/app/main.py +++ b/app/main.py @@ -9,6 +9,8 @@ app.openapi = custom_openapi(app) @app.get("/", dependencies=[Depends(auth_web)]) @app.post("/", dependencies=[Depends(auth_hook)]) async def hook(req: Request): + json = await req.json() + print(json) return "Update"