mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 18:15:28 +03:00
rename orchestrator method start_polling to run_repl
This commit is contained in:
@@ -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__':
|
||||
|
||||
Reference in New Issue
Block a user