Files
mediaproc/core/jobs/__init__.py
2026-03-13 14:29:38 -03:00

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",
]