bx-2052-deal-tab #2

Merged
ksenia_mikhailova merged 25 commits from bx-2052-deal-tab into main 2024-11-19 13:59:00 +03:00
1 changed files with 9 additions and 0 deletions
Showing only changes of commit e434cfa024 - Show all commits

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