TelegramBotTemplate/app/core/dispatcher.py

10 lines
360 B
Python
Raw Normal View History

2025-03-29 01:13:50 +03:00
from aiogram import Dispatcher, F
from aiogram.filters import CommandStart, StateFilter, Command
from handlers import hmain
def setup_dispatcher(dispatcher: Dispatcher) -> Dispatcher:
# # # # # # # # # # # # # # # # # Handlers # # # # # # # # # # # # # # # # # # # #
dispatcher.message.register(hmain.mainstart, CommandStart())
return dispatcher