Skip to main content

provenant/license_detection/models/
mod.rs

1//! Core data structures for license detection.
2
3pub mod license;
4pub mod license_match;
5pub mod loaded_license;
6pub mod loaded_rule;
7pub mod position_span;
8pub mod rule;
9
10pub use license::License;
11pub use license_match::{LicenseMatch, MatchCoordinates, MatcherKind};
12pub use loaded_license::LoadedLicense;
13pub use loaded_rule::LoadedRule;
14pub use position_span::PositionSpan;
15pub use rule::{Rule, RuleKind};
16
17#[cfg(test)]
18mod mod_tests;