complete entrypoint resolver refactor

This commit is contained in:
2026-03-13 17:29:14 +03:00
parent b9b83540e2
commit db94cc8c9e
6 changed files with 77 additions and 83 deletions
+1 -2
View File
@@ -9,8 +9,7 @@ orchestrator = Orchestrator()
def main() -> None:
app.include_router(router)
app.set_description_message_pattern(
lambda command,
description: f"[bold cyan]▸[/bold cyan] [bold white]{command}[/bold white] [dim]│[/dim] [yellow italic]{description}[/yellow italic]"
lambda command, description: f"[bold cyan]▸[/bold cyan] [bold white]{command}[/bold white] [dim]│[/dim] [yellow italic]{description}[/yellow italic]"
)
orchestrator.run_repl(app)