Spaces:
Sleeping
Sleeping
| """ | |
| Devil's Dozen Real-time Sync. | |
| WebSocket subscriptions and turn coordination for multiplayer gameplay. | |
| """ | |
| from src.realtime.events import EventPayload, GameEvent | |
| from src.realtime.subscriptions import ChannelManager | |
| from src.realtime.sync_manager import ( | |
| RealtimeManager, | |
| subscribe_to_lobby, | |
| unsubscribe_from_lobby, | |
| ) | |
| __all__ = [ | |
| "ChannelManager", | |
| "EventPayload", | |
| "GameEvent", | |
| "RealtimeManager", | |
| "subscribe_to_lobby", | |
| "unsubscribe_from_lobby", | |
| ] | |