diff --git a/app/main.py b/app/main.py index 499d13f..821fffa 100644 --- a/app/main.py +++ b/app/main.py @@ -91,3 +91,12 @@ async def tg_intgr_get(request: Request): except Exception as e: logger.info(e) return {"status": "error"} + +@app.post('/deal_tab') +async def deal_tab(request: Request): + try: + logger.info(request) + return {"status": "success"} + except Exception as e: + logger.info(e) + return {"status": "error"} \ No newline at end of file