Files
mediaproc/core/jobs/__init__.py
2026-03-28 08:51:25 -03:00

14 lines
227 B
Python

"""
MPR Jobs Module
Provides executor abstraction for job dispatch (local, Lambda, GCP).
"""
from .executor import Executor, LocalExecutor, get_executor
__all__ = [
"Executor",
"LocalExecutor",
"get_executor",
]