Files
pi-pm3/app/backend/websocket/__init__.py
michael 4f35df1781 Initial commit - Phase 3/4
🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-06 13:46:22 -08:00

7 lines
232 B
Python

"""WebSocket module for real-time notifications."""
from .manager import ws_manager, ConnectionManager
from .routes import router
from . import notifications
__all__ = ["ws_manager", "ConnectionManager", "router", "notifications"]