12 lines
286 B
Python
12 lines
286 B
Python
from bot.Keyboard import Keyboard
|
|
from telegram import InlineKeyboardButton, InlineKeyboardMarkup
|
|
|
|
|
|
class MainKeyboard(Keyboard):
|
|
|
|
def get_keyboard(self):
|
|
return [
|
|
[
|
|
InlineKeyboardButton("Меню", callback_data='menu'),
|
|
],
|
|
] |