second one

This commit is contained in:
2023-11-14 16:15:21 +03:00
parent 2ebc03606d
commit 8b9298b34c
6 changed files with 199 additions and 46 deletions

View File

@ -23,6 +23,16 @@ def cancel() -> keyboard:
def fund_markup() -> keyboard:
return keyboard(
keyboard=[
[button(text="✅ Я скинул", callback_data="contributed")],
[button(text="🏁 Завершить сбор", callback_data="close_fund")],
]
)
def yes_no() -> keyboard:
return keyboard(
keyboard=[
[button(text="✅ Да", callback_data="yes")],
[button(text="❌ Нет", callback_data="no")],
]
)