15 lines
467 B
Python
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)
|