Testing text2img command (will be replaced, only for tests); added exception handling, queue and database table with generated images

This commit is contained in:
BarsTiger
2023-02-20 16:41:55 +02:00
parent 3bd34009ae
commit d56f1d386f
21 changed files with 219 additions and 34 deletions

View File

@@ -0,0 +1,15 @@
from bot.common import dp
from bot.db import db, DBTables
from aiogram import types
from .factories.exception import exception_callback
async def on_exception(call: types.CallbackQuery, callback_data: dict):
e_id = callback_data['e_id']
e = db[DBTables.exceptions][e_id]
del db[DBTables.exceptions][e_id]
await call.message.edit_text(e, parse_mode='html')
def register():
dp.register_callback_query_handler(on_exception, exception_callback.filter())