mirror of
https://gitflic.ru/project/maks1ms/ocab.git
synced 2025-04-04 08:33:47 +03:00
13 lines
509 B
Python
13 lines
509 B
Python
from aiogram import Bot
|
|
from aiogram.types import Message
|
|
|
|
|
|
async def delete_message(message: Message, bot: Bot):
|
|
reply_message_id = message.reply_to_message.message_id
|
|
await bot.delete_message(message.chat.id, reply_message_id)
|
|
|
|
async def error_access(message: Message, bot: Bot):
|
|
await message.reply("Вы не админ/модератор")
|
|
|
|
async def get_chat_id(message: Message, bot: Bot):
|
|
await message.reply(f"ID данного чата: `{message.chat.id}`", parse_mode="MarkdownV2") |