mirror of
https://github.com/catspace-dev/unicheckbot.git
synced 2025-07-10 00:02: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'])
|