Files
2026-07-13 13:39:38 +08:00

13 lines
249 B
Python

from .cli import AgentsConsole, run_app
__all__ = ["run_app", "AgentsConsole"]
# Cleanup docs of unexported modules
_module = dir()
NOT_IN_ALL = [m for m in _module if m not in __all__]
__pdoc__ = {}
for n in NOT_IN_ALL:
__pdoc__[n] = False