Files
mediaproc/core/task/__init__.py
2026-03-13 01:07:02 -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",
]