| from ubot import * | |
| async def _(client, message): | |
| await help_cmd(client, message) | |
| async def _(client, inline_query): | |
| await menu_inline(client, inline_query) | |
| async def _(client, callback_query): | |
| try: | |
| await menu_callback(client, callback_query) | |
| except: | |
| pass | |