This repository has been archived on 2024-12-26. You can view files and clone it, but cannot push or open issues or pull requests.
PyBitmessage-2024-12-26/mockenv/lib/python3.6/site-packages/jsonrpc/__init__.py
2022-07-22 16:13:59 +05:30

12 lines
245 B
Python

from .manager import JSONRPCResponseManager
from .dispatcher import Dispatcher
__version = (1, 13, 0)
__version__ = version = '.'.join(map(str, __version))
__project__ = PROJECT = __name__
dispatcher = Dispatcher()
# lint_ignore=W0611,W0401