better naming for celery and grpc

This commit is contained in:
2026-02-06 08:33:48 -03:00
parent c0a3901951
commit 65c3055de6
14 changed files with 19 additions and 20 deletions

15
task/__init__.py Normal file
View File

@@ -0,0 +1,15 @@
"""
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",
]