Files
finance_bot/app/bot/handlers/__init__.py
2025-12-10 22:09:31 +09:00

15 lines
467 B
Python

"""Bot handlers"""
from app.bot.handlers.start import register_start_handlers
from app.bot.handlers.user import register_user_handlers
from app.bot.handlers.family import register_family_handlers
from app.bot.handlers.transaction import register_transaction_handlers
def register_handlers(dp):
"""Register all bot handlers"""
register_start_handlers(dp)
register_user_handlers(dp)
register_family_handlers(dp)
register_transaction_handlers(dp)