obzenflow_core 0.2.1

Core domain layer for ObzenFlow - pure abstractions with minimal dependencies
Documentation
// SPDX-License-Identifier: MIT OR Apache-2.0
// SPDX-FileCopyrightText: 2025-2026 ObzenFlow Contributors
// https://obzenflow.dev

//! Strongly typed identifiers for core domain entities
//!
//! These IDs are fundamental to the system and used throughout all layers

pub mod composite_id;
pub mod cycle_depth;
pub mod flow_id;
pub mod journal_id;
pub mod role_id;
pub mod scc_id;
pub mod stage_id;
pub mod stage_key;
pub mod system_id;

pub use composite_id::CompositeId;
pub use cycle_depth::CycleDepth;
pub use flow_id::FlowId;
pub use journal_id::JournalId;
pub use role_id::RoleId;
pub use scc_id::SccId;
pub use stage_id::StageId;
pub use stage_key::StageKey;
pub use system_id::SystemId;