feat: add send_instruct_main_menu export in instruct/handlers.py

This commit is contained in:
Денис Кривоченко
2026-07-21 00:39:24 +07:00
parent c8a5d5691f
commit ea1fcc372a
+8
View File
@@ -15,6 +15,14 @@ from utils.texts import (
INSTRUCT_MAIN_MENU_TEXT = instruct_main_menu_text INSTRUCT_MAIN_MENU_TEXT = instruct_main_menu_text
# ======================================== # ========================================
# EXPORTS
async def send_instruct_main_menu(msg: Message, user_id: str):
"""Send the Instruct main menu to the user."""
await msg.answer(instruct_main_menu_text(), parse_mode="html")
# SETUP # SETUP
# ======================================== # ========================================
log_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'logs') log_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'logs')