Implement user-specific question numbering and update database schema. Added triggers for automatic question numbering and adjustments upon deletion. Enhanced CRUD operations to manage user_question_number effectively.
This commit is contained in:
17
keyboards/__init__.py
Normal file
17
keyboards/__init__.py
Normal file
@@ -0,0 +1,17 @@
|
||||
"""
|
||||
Клавиатуры для бота
|
||||
"""
|
||||
|
||||
from .inline import (
|
||||
get_answer_keyboard,
|
||||
get_admin_keyboard,
|
||||
get_stats_keyboard
|
||||
)
|
||||
from .reply import get_main_keyboard
|
||||
|
||||
__all__ = [
|
||||
'get_answer_keyboard',
|
||||
'get_admin_keyboard',
|
||||
'get_stats_keyboard',
|
||||
'get_main_keyboard'
|
||||
]
|
||||
Reference in New Issue
Block a user