Add default keyboard

This commit is contained in:
LoRiot 2022-10-16 22:08:23 +03:00
parent e03a4da8c7
commit f817c79b01
2 changed files with 14 additions and 0 deletions

9
keyboards/default.py Normal file
View File

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

5
states/project.py Normal file
View File

@ -0,0 +1,5 @@
from aiogram.dispatcher.filters.state import State, StatesGroup
class ProjectStates(StatesGroup):
set_fields = State()