9 lines
181 B
Python
9 lines
181 B
Python
|
|
"""Compatibility shim for the Rust-backed DITAv2 execution kernel."""
|
||
|
|
|
||
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
from .rust_backend import ExecutionKernel
|
||
|
|
|
||
|
|
__all__ = ["ExecutionKernel"]
|
||
|
|
|