mirror of
https://github.com/ArtzSU/SRSP-bot.git
synced 2026-09-17 05:48:54 +00:00
23 lines
478 B
Python
23 lines
478 B
Python
from aiogram.types import (
|
|
KeyboardButton,
|
|
ReplyKeyboardMarkup,
|
|
)
|
|
|
|
# REPLY_KEYBOARDS
|
|
main_kb = ReplyKeyboardMarkup(
|
|
keyboard = [
|
|
[
|
|
KeyboardButton(text="/team_members")
|
|
],
|
|
[
|
|
KeyboardButton(text="/documentation"),
|
|
KeyboardButton(text="/presentation"),
|
|
],
|
|
[
|
|
KeyboardButton(text="/help")
|
|
]
|
|
],
|
|
resize_keyboard=True,
|
|
input_field_placeholder="Choose one option",
|
|
)
|