This repository has been archived on 2022-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
it-volunteers-for-peace/keyboards/default.py

12 lines
261 B
Python

from aiogram.types import ReplyKeyboardMarkup
default_kb = ReplyKeyboardMarkup(
resize_keyboard=True,
keyboard=[
["Найти проект"],
["Создать проект", "Мои проекты"],
["Помощь"],
],
)