Initial project import

This commit is contained in:
2026-08-14 09:40:51 +03:00
parent 00040e5ce4
commit d7099bf80d
146 changed files with 30509 additions and 1055 deletions
@@ -0,0 +1,11 @@
from typing import Any
from write.context import AdapterWriteContext
from write.contracts import WriteHandler
HANDLER = WriteHandler("scheduled_job_schedule", "schedule")
def execute(payload: dict[str, Any], context: AdapterWriteContext) -> dict[str, Any]:
"""Run the current proven scheduled-job writer through the handler seam."""
return context.legacy_scheduled_job_writer(payload)