19 lines
404 B
Python
19 lines
404 B
Python
# Copyright (c) 2025 Patrick Motsch
|
|
# All rights reserved.
|
|
"""Background job service: generic, reusable infrastructure for long-running tasks."""
|
|
|
|
from .mainBackgroundJobService import (
|
|
registerJobHandler,
|
|
startJob,
|
|
getJobStatus,
|
|
listJobs,
|
|
JobProgressCallback,
|
|
)
|
|
|
|
__all__ = [
|
|
"registerJobHandler",
|
|
"startJob",
|
|
"getJobStatus",
|
|
"listJobs",
|
|
"JobProgressCallback",
|
|
]
|