mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-10-26 20:01:57 -06:00
Scaffold Engine application interfaces
This commit is contained in:
20
Data/Engine/interfaces/ws/agents/events.py
Normal file
20
Data/Engine/interfaces/ws/agents/events.py
Normal file
@@ -0,0 +1,20 @@
|
||||
"""Agent WebSocket event placeholders for the Engine."""
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
from typing import Any
|
||||
|
||||
|
||||
def register(socketio: Any) -> None:
|
||||
"""Register agent-related namespaces on *socketio*.
|
||||
|
||||
The concrete event handlers will be migrated in later phases.
|
||||
"""
|
||||
|
||||
if socketio is None: # pragma: no cover - guard
|
||||
return
|
||||
# Placeholder for namespace registration, e.g. ``socketio.on_namespace(...)``.
|
||||
return
|
||||
|
||||
|
||||
__all__ = ["register"]
|
||||
Reference in New Issue
Block a user