Skip to content

Commit f69e073

Browse files
committed
feat: 新增 ZMQ 插件管理器模块
1 parent 4db8784 commit f69e073

32 files changed

+4122
-305
lines changed

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,4 @@ old/
169169
src/plugins/*/*.json
170170
src/plugins/*/*.db
171171
.vscode/
172-
src/history.db
173-
history_show_fields.json
174-
src/out.json
172+
data/*

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ setuptools==80.9.0
44
msgspec>=0.20.0
55
zmq>=0.0.0
66
pywin32
7-
7+
loguru

src/lib_zmq_plugins/__init__.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from lib_zmq_plugins.shared.base import BaseCommand, BaseEvent, CommandResponse, SyncCommand
2+
from lib_zmq_plugins.log import LogHandler, NullHandler
3+
4+
__all__ = [
5+
"BaseEvent", "BaseCommand", "CommandResponse", "SyncCommand",
6+
"LogHandler", "NullHandler",
7+
]
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from lib_zmq_plugins.client.zmq_client import ZMQClient
2+
3+
__all__ = ["ZMQClient"]

0 commit comments

Comments
 (0)