//! Runtime execution control (横断層).
//!
//! This module provides runtime execution infrastructure:
//! - Scan context management
//! - Pipeline orchestration
//! - Executor for running scans
//! - Hook mode for CI/CD integration
//!
//! Note: This module is a skeleton for v1.x and will be fully
//! implemented in future versions.
// Re-export from hook_mode (will be fully integrated in future)
pub use crate;
// Re-export local modules
pub use ScanContext;
pub use ScanExecutor;
pub use HookRunner;
pub use ;