Skip to main content

appcore_core/
ids.rs

1// =============================================================================
2//        #######
3//     ###       ###     F: ids.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 identifier exports.
12
13pub use appcore_types::{
14    validate_distributed_identifier, validate_identifier, AppFamily, AppId, CapabilityName,
15    ClusterId, CommandName, CoreId, EventName, InstanceId, NodeId, ProtocolVersion, QueryName,
16    RuntimeContractVersion, StateName, SyncGroup, TenantId,
17};
18
19#[cfg(test)]
20#[path = "ids_tests.rs"]
21mod tests;