new command routes

This commit is contained in:
2026-03-15 19:56:28 +03:00
parent 0d8871a719
commit 2785779583
6 changed files with 75 additions and 6 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ def run_handler(entrypoint_path: str) -> None:
entrypoint_path, _, entrypoint_callable_name = entrypoint_path.partition(":")
if not entrypoint_callable_name:
raise ResolveFromStringError(
"Path to callable object that run orchestrator repl must be in the format <path/to/file.py>:<object_name>"
"Path to callable object that run orchestrator repl must be in the format <path/to/file.py>:<object_name> or <path.to.module>:<object_name>"
)
runner = EntrypointResolver[CallableEntryPoint](entrypoint_path).parse_entrypoint_with_type(