Skip to main content

cc_audit/runtime/
mod.rs

1//! Runtime execution control (横断層).
2//!
3//! This module provides runtime execution infrastructure:
4//! - Scan context management
5//! - Pipeline orchestration
6//! - Executor for running scans
7//! - Hook mode for CI/CD integration
8//!
9//! Note: This module is a skeleton for v1.x and will be fully
10//! implemented in future versions.
11
12pub mod context;
13pub mod executor;
14pub mod hook;
15pub mod pipeline;
16
17// Re-export from hook_mode (will be fully integrated in future)
18pub use crate::hook_mode::{
19    BashInput, EditInput, HookAnalyzer, HookEvent, HookEventName, HookResponse, WriteInput,
20    run_hook_mode,
21};
22
23// Re-export local modules
24pub use context::ScanContext;
25pub use executor::ScanExecutor;
26pub use hook::HookRunner;
27pub use pipeline::{Pipeline, PipelineStage};