mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-01 03:22:07 +08:00
51a1c534f5
42428013 websocket patch from commaai/websocket-client.git
0fda5bb7 add jsonrpc
8139b06b add websocket_client
git-subtree-dir: pyextra
git-subtree-split: 4242801316e12c55e5b7c626331fbefad2e15e0c
old-commit-hash: 342bb13bff
12 lines
245 B
Python
12 lines
245 B
Python
from .manager import JSONRPCResponseManager
|
|
from .dispatcher import Dispatcher
|
|
|
|
__version = (1, 12, 1)
|
|
|
|
__version__ = version = '.'.join(map(str, __version))
|
|
__project__ = PROJECT = __name__
|
|
|
|
dispatcher = Dispatcher()
|
|
|
|
# lint_ignore=W0611,W0401
|