TelegramBotTemplate/app/core/dispatcher.py
2025-03-29 01:13:50 +03:00

10 lines
360 B
Python

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