Files
Borealis-Github-Replica/Data/Engine/interfaces/ws/agents/__init__.py

17 lines
312 B
Python

"""Agent WebSocket namespace wiring for the Engine."""
from __future__ import annotations
from typing import Any
from . import events
def register(socketio: Any) -> None:
"""Register agent namespaces on the given Socket.IO *socketio* instance."""
events.register(socketio)
__all__ = ["register"]