This commit is contained in:
Kseninia Mikhaylova 2024-11-19 10:16:20 +03:00
parent e1b44839d4
commit e434cfa024
1 changed files with 9 additions and 0 deletions

View File

@ -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"}