replace-bot/handlers/private/donate.py

12 lines
338 B
Python
Raw Permalink Normal View History

2023-03-30 08:57:14 +03:00
from aiogram import types
from load import dp, bot, config
@dp.message_handler(commands=["donate"])
async def donate(message: types.Message):
await bot.send_message(
message.chat.id,
(f"Оплптити онлайн: {config.payment_link}\n"
f"Переказ на карту: {config.card_number}\n")
)