rust-guardian 0.1.1

Dynamic code quality enforcement preventing incomplete or placeholder code
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Domain layer for Rust Guardian
//!
//! Architecture: Domain Model - Pure business logic for code quality enforcement
//! - Contains all core entities, value objects, and domain services
//! - Independent of infrastructure concerns like databases, file systems, or external APIs
//! - Expresses the ubiquitous language of code quality and violation detection

pub mod violations;

// Re-export main domain types for convenience
pub use violations::*;