mirror of
https://github.com/catspace-dev/unicheckbot.git
synced 2024-11-16 03:06:33 +03:00
7 lines
152 B
Python
7 lines
152 B
Python
from aiogram import Dispatcher
|
|
|
|
from .start import start_cmd
|
|
|
|
def setup(dp: Dispatcher):
|
|
dp.register_message_handler(start_cmd, commands=['start'])
|