// Copyright (c) 2026 Kirky.X. All rights reserved.
// SPDX-License-Identifier: MIT
//! Domain model entities: nodes, edges, languages, and the in-memory graph.
//!
//! Implements the Builder pattern for [`Node`]/[`Edge`] construction and the
//! Repository-friendly value types described in DDD §4-5 and ADD §3.4.
pub use ;
pub use EdgeType;
pub use FlowType;
pub use Graph;
pub use Language;
pub use ;
pub use NodeLabel;