Add default keyboard
This commit is contained in:
parent
e03a4da8c7
commit
f817c79b01
9
keyboards/default.py
Normal file
9
keyboards/default.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
from aiogram.types import ReplyKeyboardMarkup
|
||||
|
||||
|
||||
default_kb = ReplyKeyboardMarkup(
|
||||
resize_keyboard=True, keyboard=[
|
||||
["Мои проекты", "Создать проект"],
|
||||
["Помощь"],
|
||||
]
|
||||
)
|
5
states/project.py
Normal file
5
states/project.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
from aiogram.dispatcher.filters.state import State, StatesGroup
|
||||
|
||||
|
||||
class ProjectStates(StatesGroup):
|
||||
set_fields = State()
|
Reference in a new issue