feat(automation): add template run context builder

This commit is contained in:
CREDO23 2026-05-27 14:23:18 +02:00
parent de6da1b775
commit cb42b3a84f
2 changed files with 53 additions and 0 deletions

View file

@ -0,0 +1,12 @@
"""Sandboxed template engine for automation definitions."""
from __future__ import annotations
from .context import build_run_context
from .render import evaluate_predicate, render_template
__all__ = [
"build_run_context",
"evaluate_predicate",
"render_template",
]