1//! Generate a fresh UUID-v4 (simple form) for use as an Air request id.
2//! Each Air RPC carries one of these so Mountain can correlate replies
3//! with the originating call across log lines + traces.
45use uuid::Uuid;
67pub fn Fn() -> String { Uuid::new_v4().simple().to_string() }