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')