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