# 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", ]