18 lines
532 B
Python
18 lines
532 B
Python
"""Per-AP-process tmux terminal subsystem.
|
|
|
|
Hosts the :class:`TerminalRegistry`, the conversation-scoped registry
|
|
of live ``inner.terminal.TerminalInstance`` objects backing the
|
|
``sys_terminal_*`` tool family.
|
|
|
|
See ``designs/OMNIGENT_TERMINAL_BRIDGE.md`` for the design and the
|
|
:class:`TerminalInstance` documentation in
|
|
:mod:`omnigent.inner.terminal` for the underlying tmux machinery.
|
|
"""
|
|
|
|
from omnigent.terminals.registry import TerminalListEntry, TerminalRegistry
|
|
|
|
__all__ = [
|
|
"TerminalListEntry",
|
|
"TerminalRegistry",
|
|
]
|