not working shit
This commit is contained in:
28
bot/app/keyboards.py
Normal file
28
bot/app/keyboards.py
Normal file
@ -0,0 +1,28 @@
|
||||
from telebot.types import (
|
||||
InlineKeyboardButton as button,
|
||||
InlineKeyboardMarkup as keyboard,
|
||||
)
|
||||
|
||||
|
||||
def setup() -> keyboard:
|
||||
return keyboard(
|
||||
keyboard=[
|
||||
[button(text="💸 Стать участником", callback_data="register_group_member")],
|
||||
]
|
||||
)
|
||||
|
||||
|
||||
def cancel() -> keyboard:
|
||||
return keyboard(
|
||||
keyboard=[
|
||||
[button(text="❌ Отменить", callback_data="cancel")],
|
||||
]
|
||||
)
|
||||
|
||||
|
||||
def fund_markup() -> keyboard:
|
||||
return keyboard(
|
||||
keyboard=[
|
||||
[button(text="🏁 Завершить сбор", callback_data="close_fund")],
|
||||
]
|
||||
)
|
||||
Reference in New Issue
Block a user