protocol.py 259 B

12345678910
  1. """Compatibility module for the packaged :mod:`agent.im_client.protocol`."""
  2. from _framework_import import load
  3. _module = load("agent.im_client.protocol")
  4. IMMessage = _module.IMMessage
  5. IMResponse = _module.IMResponse
  6. __all__ = ["IMMessage", "IMResponse"]