Files
h1686bot/bot/handlers/start/start.py
2025-01-02 22:19:43 +02:00

10 lines
206 B
Python

from aiogram import Router, types
from aiogram.filters import Command
router = Router()
@router.message(Command("start"))
async def on_start(message: types.Message):
await message.reply(text="1686")