Remove legacy test script and enhance main application with WeChat server and menu management features. Added commands for starting the WeChat callback server and managing WeChat menus, along with necessary imports and error handling. Updated requirements to include Flask for the WeChat server functionality.

This commit is contained in:
2026-01-08 15:16:42 +08:00
parent 317dbf3c58
commit a8108d9afd
25 changed files with 3089 additions and 152 deletions
+10
View File
@@ -0,0 +1,10 @@
"""
企业微信交互模块
提供企业微信回调服务器、消息处理、菜单管理等功能
"""
from .callback_server import WeChatCallbackServer
from .message_handler import WeChatMessageHandler
from .menu_manager import WeChatMenuManager
__all__ = ['WeChatCallbackServer', 'WeChatMessageHandler', 'WeChatMenuManager']