1
0
mirror of https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git synced 2025-08-14 00:25:46 +02:00
Files
AdministrationItDepartmens/backend/app/bot/handlers/start.py
MoonTestUse1 e81df4c87e Initial commit
2024-12-23 19:27:44 +06:00

13 lines
460 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

from aiogram import types
from aiogram.filters import CommandStart
from ..bot import dp
@dp.message(CommandStart())
async def start_command(message: types.Message):
"""Handle /start command"""
await message.answer(
"👋 Привет! Я бот технической поддержки.\n"
"Я буду отправлять уведомления о новых заявках и позволю менять их статус."
)