16 lines
267 B
Python
16 lines
267 B
Python
"""
|
|
MPR Jobs Module
|
|
|
|
Provides executor abstraction and task dispatch for job processing.
|
|
"""
|
|
|
|
from .executor import Executor, LocalExecutor, get_executor
|
|
from .task import run_job
|
|
|
|
__all__ = [
|
|
"Executor",
|
|
"LocalExecutor",
|
|
"get_executor",
|
|
"run_job",
|
|
]
|