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

6
attr_check.py Normal file
View File

@@ -0,0 +1,6 @@
from bot import BotService
service = BotService()
import inspect
for name, method in inspect.getmembers(service, callable):
if name in {"on_connect","on_receive","on_close"}:
print(name, hasattr(method, "_wx_connect_handled"), hasattr(method, "_wx_recv_handled"), hasattr(method, "_wx_close_handled"))