Coverage for node / src / stigmem_node / tombstone_gate.py: 0%
6 statements
« prev ^ index » next coverage.py v7.13.5, created at 2026-05-25 01:49 +0000
« prev ^ index » next coverage.py v7.13.5, created at 2026-05-25 01:49 +0000
1"""Compatibility alias for :mod:`stigmem_node.lifecycle.tombstone_gate`."""
3from __future__ import annotations
5import sys
6from typing import TYPE_CHECKING
8__all__ = ["TOMBSTONE_PLUGIN_NAME", "tombstone_plugin_registered"]
10if TYPE_CHECKING:
11 from .lifecycle.tombstone_gate import TOMBSTONE_PLUGIN_NAME, tombstone_plugin_registered
12else:
13 from .lifecycle import tombstone_gate as _impl
15 sys.modules[__name__] = _impl