appcore_core/identity.rs
1// =============================================================================
2// #######
3// ### ### F: identity.rs
4// ## ## ## ## P: AppCore-Runtime
5// ## ##
6// C: 2026/05/29 20:47:35 by dnettoRaw
7// ## ## ## ## U: 2026/07/24 16:07:49 by dnettoRaw
8// ########### S: 1.0.1-rc.8
9// =============================================================================
10
11//! Foundational Runtime identity exports.
12
13pub use appcore_types::{
14 CompatibilityStatus, CoreCompatibilityPolicy, CoreCompatibilityStatus, CoreIdentity, CoreKind,
15 RuntimeIdentity,
16};
17
18#[cfg(test)]
19#[path = "identity_tests.rs"]
20mod tests;