You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
245 B
12 lines
245 B
6 years ago
|
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
|