cc_audit/types/mod.rs
1//! Type-safe wrapper types for improved compile-time guarantees.
2//!
3//! This module provides NewType pattern implementations to prevent
4//! primitive type misuse and improve API clarity.
5
6mod newtypes;
7mod paths;
8
9pub use newtypes::{AuthToken, CommandArgs, CompiledPattern, FileHash, GitRef, RuleId, ServerName};
10pub use paths::{PathValidationError, ScanTarget};