Files
mediaproc/worker/__init__.py
2026-02-03 13:40:28 -03:00

16 lines
289 B
Python

"""
MPR Worker Module
Provides executor abstraction and Celery tasks for job processing.
"""
from .executor import Executor, LocalExecutor, get_executor
from .tasks import run_transcode_job
__all__ = [
"Executor",
"LocalExecutor",
"get_executor",
"run_transcode_job",
]