mirror of
https://github.com/ArtzSU/SRSP-bot.git
synced 2026-09-17 03:29:00 +00:00
Initial commit
This commit is contained in:
+22
@@ -0,0 +1,22 @@
|
||||
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",
|
||||
)
|
||||
Reference in New Issue
Block a user