dei_core/lib.rs
1//! Core domain models and traits for the dei code analyzer
2//!
3//! This crate provides language-agnostic abstractions for code analysis,
4//! emphasizing zero-cost abstractions and strong typing.
5
6pub mod error;
7pub mod metrics;
8pub mod models;
9pub mod thresholds;
10pub mod traits;
11
12#[cfg(test)]
13mod tests;
14
15pub use error::{Error, Result};
16