init commit

This commit is contained in:
prod-tech
2024-11-17 02:31:42 +03:00
commit cf933c770c
217 changed files with 19340 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import aiogram.types
from app.core.config import config
inline_web_app_buttons = [
[
aiogram.types.InlineKeyboardButton(
text='Запустить',
web_app=aiogram.types.WebAppInfo(url=config.WEB_APP_URL),
)
]
]
inline_web_app = aiogram.types.InlineKeyboardMarkup(
inline_keyboard=inline_web_app_buttons
)