init commit
This commit is contained in:
14
app/bot/handlers/__init__.py
Normal file
14
app/bot/handlers/__init__.py
Normal file
@@ -0,0 +1,14 @@
|
||||
"""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)
|
||||
Reference in New Issue
Block a user