| 123456789101112 |
- """Synchronous API surface.
- ``client.py`` is generated from the async source by
- ``scripts/generate_sync.py``; ``realtime.py`` is a hand-written twin of
- ``chattolib.realtime``.
- """
- from chattolib._sync.client import SyncChattoClient
- from chattolib._sync.realtime import SyncRealtimeConnection
- from chattolib._sync.realtime import stream_events as stream_events_sync
- __all__ = ["SyncChattoClient", "SyncRealtimeConnection", "stream_events_sync"]
|