mirror of
https://github.com/bunny-lab-io/Borealis.git
synced 2025-10-27 09:41:57 -06:00
11 lines
223 B
Python
11 lines
223 B
Python
"""Realtime coordination services for the Borealis Engine."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from .agent_registry import AgentRealtimeService, AgentRecord
|
|
|
|
__all__ = [
|
|
"AgentRealtimeService",
|
|
"AgentRecord",
|
|
]
|