Add Engine realtime services and agent WebSocket handlers

This commit is contained in:
2025-10-22 13:45:12 -06:00
parent 9292cfb280
commit 3524faa40f
13 changed files with 683 additions and 29 deletions

View File

@@ -7,10 +7,10 @@ from typing import Any
from . import events
def register(socketio: Any) -> None:
def register(socketio: Any, services) -> None:
"""Register agent namespaces on the given Socket.IO *socketio* instance."""
events.register(socketio)
events.register(socketio, services)
__all__ = ["register"]