feat:初版

This commit is contained in:
2025-12-03 15:48:44 +08:00
commit b4df26f61d
199 changed files with 23434 additions and 0 deletions

7
simulate.py Normal file
View File

@@ -0,0 +1,7 @@
from bot import BotService
from WechatHook.callbacks import add_callback_handler, wechat_connect_callback
service = BotService()
add_callback_handler(service)
print('before', service.socket_client_id)
wechat_connect_callback(1234)
print('after', service.socket_client_id)