channel-block-tg/handlers/user/__init__.py
2020-04-06 00:12:41 +03:00

9 lines
197 B
Python

from aiogram import Dispatcher
from aiogram.dispatcher.filters import CommandStart
from .start import bot_start
def setup(dp: Dispatcher):
dp.register_message_handler(start, CommandStart())