This commit is contained in:
2026-03-28 08:46:06 -03:00
parent acc99e691d
commit 0bd3888155
30 changed files with 390 additions and 1044 deletions

View File

@@ -1,15 +1,13 @@
"""
MPR Jobs Module
Provides executor abstraction and task dispatch for job processing.
Provides executor abstraction for job dispatch (local, Lambda, GCP).
"""
from .executor import Executor, LocalExecutor, get_executor
from .task import run_job
__all__ = [
"Executor",
"LocalExecutor",
"get_executor",
"run_job",
]