diff --git a/app/main.py b/app/main.py index 794a583..e836929 100644 --- a/app/main.py +++ b/app/main.py @@ -35,3 +35,10 @@ async def intgr(request: Request): logger.info(f"result {json.loads(bx_res.text)}") return {"status": "success"} + +@app.post("integration_tg") +async def tg_intgr(request: Request): + body = await request.json() + logger.info(body) + + return {"status": "success"} \ No newline at end of file