useuuid::Uuid;/// Trait for entities that can participate in a graph
////// Implemented by domain entities like Card, Sprint, Board, etc.
/// Provides a unique identifier for graph node operations.
pubtraitGraphNode{/// Get the unique identifier for this node
fnnode_id(&self)-> Uuid;}