9 lines
197 B
Python
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())
|