rename orchestrator method start_polling to run_repl

This commit is contained in:
2026-02-10 14:03:37 +03:00
parent 6ed1d35e8a
commit de6d35205c
23 changed files with 79 additions and 81 deletions
+4 -4
View File
@@ -3,11 +3,11 @@ from typer import Typer
from .commands import run_handler, init_handler, new_handler
def main():
def main() -> None:
app = Typer()
app.command("run")(run_handler)
app.command("init")(init_handler)
app.command("new")(new_handler)
app.command("run", help='Command to start the orchestrator repl; the path to the orchestrator is required')(run_handler)
app.command("init", help="Creates a flat/src boilerplate architecture in an existing project")(init_handler)
app.command("new", help="Creates a project and in it flat/src boilerplate architecture")(new_handler)
app()
if __name__ == '__main__':