//! ID generation port.
use Uuid;
/// Port for UUID generation, enabling injection of deterministic implementations
/// in tests and alternative ID schemes (ULIDs, Snowflake IDs) in production.
/// Production adapter that delegates to `Uuid::new_v4()`.
;