File: __init__.py

package info (click to toggle)
python-rpcq 3.11.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 300 kB
  • sloc: python: 1,525; makefile: 3
file content (9 lines) | stat: -rw-r--r-- 430 bytes parent folder | download
1
2
3
4
5
6
7
8
9
from rpcq._client import Client, ClientAuthConfig
from rpcq._server import Server, ServerAuthConfig
# These are imported so that the corresponding data classes are
# registered whenever rpcq is imported. Without which one would have
# to import the messages and core_messages modules directly before
# using, e.g., from_json / to_json.
from rpcq import messages
from rpcq import core_messages
from rpcq.version import __version__