12 lines
338 B
Python
12 lines
338 B
Python
|
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")
|
||
|
)
|