Mountain/Air/AirServiceProvider/GenerateRequestID.rs
1#![allow(non_snake_case)]
2
3//! Generate a fresh UUID-v4 (simple form) for use as an Air request id.
4//! Each Air RPC carries one of these so Mountain can correlate replies
5//! with the originating call across log lines + traces.
6
7use uuid::Uuid;
8
9pub fn Fn() -> String { Uuid::new_v4().simple().to_string() }