From ea1fcc372a206c21f697767186a2aaf67c2a84bc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B5=D0=BD=D0=B8=D1=81=20=D0=9A=D1=80=D0=B8=D0=B2?= =?UTF-8?q?=D0=BE=D1=87=D0=B5=D0=BD=D0=BA=D0=BE?= Date: Tue, 21 Jul 2026 00:39:24 +0700 Subject: [PATCH] feat: add send_instruct_main_menu export in instruct/handlers.py --- instruct/handlers.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/instruct/handlers.py b/instruct/handlers.py index 4438e07..02274ba 100644 --- a/instruct/handlers.py +++ b/instruct/handlers.py @@ -15,6 +15,14 @@ from utils.texts import ( 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 # ======================================== log_dir = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'logs')