#!/usr/bin/env python3 """Обработчики событий бота.""" from bot.handlers.commands import ( start_command, menu_command, help_command, settings_command, ) from bot.handlers.callbacks import menu_callback __all__ = [ "start_command", "menu_command", "help_command", "settings_command", "menu_callback", ]