switchyard/preflight/
mod.rs

1//! Preflight checks and helpers.
2//!
3//! This module provides best-effort filesystem and policy gating checks used by the
4//! higher-level API. It also exposes a small helper to render a `PreflightReport`
5//! into a SPEC-aligned YAML sequence for fixtures and artifacts.
6
7pub mod checks;
8pub mod yaml;
9
10// Re-export common helpers for convenience
11pub use checks::{check_immutable, check_source_trust, ensure_mount_rw_exec};
12pub use yaml::to_yaml;