refactor: govern background job execution

This commit is contained in:
leefer
2026-07-29 19:57:31 +08:00
parent 02af8488b3
commit 5f0b9735bd
15 changed files with 520 additions and 52 deletions
+5
View File
@@ -0,0 +1,5 @@
from .registry import JobDefinition, JobRegistry
from .repository import SQLiteJobRunRepository
from .runner import InProcessJobRunner
__all__ = ["InProcessJobRunner", "JobDefinition", "JobRegistry", "SQLiteJobRunRepository"]