mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-24 16:33:52 +08:00
42428013 websocket patch from commaai/websocket-client.git 0fda5bb7 add jsonrpc 8139b06b add websocket_client git-subtree-dir: pyextra git-subtree-split: 4242801316e12c55e5b7c626331fbefad2e15e0c
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
|