mirror of
https://github.com/BigBodyCobain/Shadowbroker.git
synced 2026-05-08 02:16:41 +02:00
12 lines
386 B
Python
12 lines
386 B
Python
"""gate_sse.py — DEPRECATED. Gate SSE broadcast removed in S3A.
|
|
|
|
Gate activity is no longer broadcast via SSE. The frontend uses the
|
|
authenticated poll loop for gate message refresh.
|
|
|
|
Stubs are kept so any late imports do not crash at startup.
|
|
"""
|
|
|
|
|
|
def _broadcast_gate_events(gate_id: str, events: list[dict]) -> None: # noqa: ARG001
|
|
"""No-op — gate SSE broadcast removed."""
|