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/inline.py

14 lines
385 B
Python

from aiogram.types import InlineKeyboardMarkup, InlineKeyboardButton
def get_join_project_kb(project_id: int) -> InlineKeyboardMarkup:
return InlineKeyboardMarkup(
inline_keyboard=[
[
InlineKeyboardButton(
"Присоединиться 💚", callback_data=str(project_id)
),
],
]
)