16 lines
289 B
Python
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",
|
|
]
|