telegram-cli-bot/bot/handlers/__init__.py

19 lines
363 B
Python

#!/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",
]