6 lines
154 B
Python
6 lines
154 B
Python
from aiogram.types import InlineKeyboardButton
|
|
|
|
|
|
def get_back_button():
|
|
return [InlineKeyboardButton(text="◀ Назад", callback_data="go_back")]
|