diff --git a/tgbot/handlers/__init__.py b/tgbot/handlers/__init__.py index e69de29..96cc872 100644 --- a/tgbot/handlers/__init__.py +++ b/tgbot/handlers/__init__.py @@ -0,0 +1,9 @@ +from aiogram import Dispatcher + +from .admin import register_admin_handlers +from .start import register_start_handlers + + +def register_handlers(dp: Dispatcher): + register_admin_handlers(dp) + register_start_handlers(dp)