Files
BOTKlining/handlers/start.py
2025-06-08 20:55:08 +09:00

8 lines
250 B
Python

from aiogram import types, Dispatcher
async def start_command(message: types.Message):
await message.reply("Приветсвие")
def register_handlers(dp: Dispatcher):
dp.register_message_handler(start_command, commands=['start'])