refactor: split precheck state snapshot and analysis

This commit is contained in:
2026-04-15 17:17:00 +08:00
parent 965b53b598
commit 893f0fb077
6 changed files with 287 additions and 57 deletions

View File

@@ -0,0 +1,9 @@
"""Snapshot construction helpers for precheck."""
from __future__ import annotations
from .. import precheck as precheck_module
def build_snapshot() -> dict:
return precheck_module.build_snapshot()